-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
58 lines (58 loc) · 1.32 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs";
};
flake-utils = {
url = "github:numtide/flake-utils";
};
fenix = {
url = "github:nix-community/fenix";
};
};
outputs = inputs: inputs.flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import inputs.nixpkgs {
inherit system;
};
rust = with inputs.fenix.packages.${system}; combine (with stable; [
cargo
clippy-preview
rust-src
rust-std
rustc
rustfmt-preview
]);
in
rec {
defaultPackage = (pkgs.makeRustPlatform {
rustc = rust;
cargo = rust;
}).buildRustPackage {
name = "windows_sdk";
src = ./.;
doCheck = false;
buildInputs = with pkgs; [
(lib.optional stdenv.isDarwin darwin.Security)
(lib.optional stdenv.isDarwin libiconv)
];
propagatedBuildInputs = with pkgs; [
msitools
unzip
];
cargoLock = { lockFile = ./Cargo.lock; };
};
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
(lib.optional stdenv.isDarwin darwin.Security)
(lib.optional stdenv.isDarwin libiconv)
jq
msitools
rust
unzip
xh
];
};
}
);
}