-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathflake.nix
More file actions
79 lines (71 loc) · 2.16 KB
/
flake.nix
File metadata and controls
79 lines (71 loc) · 2.16 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
description = "SyncDisBoi";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
nixpkgs,
fenix,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ fenix.overlays.default ];
config.allowUnfree = true;
};
toolchain =
with fenix.packages.${system};
combine [
default.rustc
default.cargo
default.clippy
default.rustfmt
pkgs.rust-analyzer
# complete.rustc-codegen-cranelift-preview
targets.x86_64-unknown-linux-musl.latest.rust-std
targets.aarch64-unknown-linux-musl.latest.rust-std
targets.x86_64-pc-windows-gnu.latest.rust-std
];
buildPkg =
arch_pkgs:
with arch_pkgs;
(makeRustPlatform {
cargo = toolchain;
rustc = toolchain;
}).buildRustPackage
{
pname = "SyncDisBoi";
version = "0.0.1";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
strictDeps = true;
doCheck = false;
stripAllList = [ "bin" ];
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = fnBuildInputs arch_pkgs;
};
fnBuildInputs = pkgs: with pkgs; [ openssl ];
in
rec {
defaultPackage = buildPkg pkgs;
packages.x86_64-unknown-linux-musl = buildPkg pkgs.pkgsCross.musl64.pkgsStatic;
packages.aarch64-unknown-linux-musl = buildPkg pkgs.pkgsCross.aarch64-multiplatform-musl.pkgsStatic;
packages.x86_64-pc-windows-gnu = buildPkg pkgs.pkgsCross.mingwW64;
devShell = pkgs.mkShell {
inputsFrom = [ defaultPackage ];
# packages = shellPkgs;
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath (fnBuildInputs pkgs)}";
};
}
);
}