This repository was archived by the owner on May 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
110 lines (102 loc) · 3.07 KB
/
flake.nix
File metadata and controls
110 lines (102 loc) · 3.07 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
inputs = {
naersk.url = "github:nix-community/naersk/master";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
fenix.url = "github:nix-community/fenix";
};
outputs =
{
self,
nixpkgs,
utils,
naersk,
fenix,
}:
utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
naersk' = pkgs.callPackage naersk { };
in
{
packages = {
default = naersk'.buildPackage {
name = "shepherd";
src = ./.;
};
cross-x86_64 =
let
rustToolchain =
with fenix.packages.${system};
combine [
minimal.cargo
minimal.rustc
targets.x86_64-unknown-linux-musl.latest.rust-std
];
in
(naersk.lib.${system}.override {
cargo = rustToolchain;
rustc = rustToolchain;
}).buildPackage
{
name = "shepherd";
src = ./.;
CARGO_BUILD_TARGET = "x86_64-unknown-linux-musl";
CARGO_TARGET_x86_64_UNKNOWN_LINUX_MUSL_LINKER =
let
inherit (pkgs.pkgsCross.gnu64.pkgsStatic.stdenv) cc;
in
"${cc}/bin/${cc.targetPrefix}cc";
CC_x86_64_unknown_linux_musl =
let
cc = pkgs.pkgsCross.gnu64.pkgsStatic.stdenv.cc;
in
"${cc}/bin/${cc.targetPrefix}cc";
};
cross-aarch64 =
let
rustToolchain =
with fenix.packages.${system};
combine [
minimal.cargo
minimal.rustc
targets.aarch64-unknown-linux-musl.latest.rust-std
];
in
(naersk.lib.${system}.override {
cargo = rustToolchain;
rustc = rustToolchain;
}).buildPackage
{
name = "shepherd";
src = ./.;
CARGO_BUILD_TARGET = "aarch64-unknown-linux-musl";
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER =
let
inherit (pkgs.pkgsCross.aarch64-multiplatform.pkgsStatic.stdenv) cc;
in
"${cc}/bin/${cc.targetPrefix}cc";
CC_aarch64_unknown_linux_musl =
let
cc = pkgs.pkgsCross.aarch64-multiplatform.pkgsStatic.stdenv.cc;
in
"${cc}/bin/${cc.targetPrefix}cc";
};
};
devShells.default =
with pkgs;
mkShell {
buildInputs = [
cargo
rustc
rustfmt
pre-commit
rustPackages.clippy
rust-analyzer
];
RUST_SRC_PATH = rustPlatform.rustLibSrc;
};
}
);
}