forked from prisma/prisma-engines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
35 lines (34 loc) · 978 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
inputs = {
crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
gitignore = {
url = "github:hercules-ci/gitignore.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default";
};
outputs = inputs@{ self, nixpkgs, rust-overlay, flake-parts, crane, systems, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = import systems;
perSystem = { config, system, pkgs, craneLib, ... }: {
config._module.args.flakeInputs = inputs;
imports = [
./nix/args.nix
./nix/shell.nix
./nix/publish-engine-size.nix
];
};
};
}