-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflake.nix
145 lines (143 loc) · 4.54 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
inputs = {
# base
systems.url = "github:nix-systems/default";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
# extra
crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
};
devshell = {
url = "github:numtide/devshell";
inputs.nixpkgs.follows = "nixpkgs";
# see: https://github.com/NixOS/nix/issues/5790
inputs.flake-utils.inputs.systems.follows = "systems";
};
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
# see: https://github.com/NixOS/nix/issues/5790
inputs.flake-utils.inputs.systems.follows = "systems";
};
};
outputs =
{ self
# base
, systems
, nixpkgs
# extra
, crane
, devshell
, rust-overlay
} @ inputs:
let
l = inputs.nixpkgs.lib // builtins;
fs = l.fileset;
eachSystem = fn: l.genAttrs (import inputs.systems) fn;
flake = (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
inputs.devshell.overlays.default
(import inputs.rust-overlay)
];
};
nativeDeps = with pkgs;[
pkg-config
stdenv.cc.cc.lib # for burn dataset loader (sqlite)
zlib # for burn dataset loader (sqlite)
openssl.dev # for burn
vulkan-headers # for burn
vulkan-loader # for burn
vulkan-tools # for burn
];
rust-toolchain = pkgs.rust-bin.selectLatestNightlyWith
(toolchain: toolchain.default.override {
extensions = [ "rust-src" "rust-analyzer" ];
});
craneLib = (crane.mkLib pkgs).overrideToolchain rust-toolchain;
rustFiles = fs.fileFilter (file: file.hasExt "rs") ./.;
cargoFiles = fs.unions [
(fs.fileFilter (file: file.name == "Cargo.toml" || file.name == "Cargo.lock") ./.)
];
commonArgs = {
pname = "crate";
version = "0.1";
nativeBuildInputs = with pkgs; (
nativeDeps
++ l.optional stdenv.isLinux clang
++ l.optionals stdenv.isDarwin [
darwin.IOKit
darwin.apple_sdk.frameworks.QuartzCore
]
);
};
crateDepsOnly = craneLib.buildDepsOnly (commonArgs // {
cargoCheckCommandcargo = "check --profile release --all-targets --all-features";
src = fs.toSource {
root = ./.;
fileset = cargoFiles;
};
});
crateClippy = craneLib.cargoClippy (commonArgs // {
cargoArtifacts = crateDepsOnly;
cargoClippyExtraArgs = "--all-targets --all-features -- --deny warnings";
src = fs.toSource {
root = ./.;
fileset = fs.unions ([
cargoFiles
rustFiles
]);
};
});
in
{
devShell = pkgs.devshell.mkShell {
motd = "";
packages = with pkgs; [
# Rust
bacon
cargo-expand
cargo-sort
evcxr
rust-toolchain
# Python
(python311.withPackages (p: with p; [ black httpx ipykernel ipython isort matplotlib numpy pytorch tqdm transformers ]))
]
++ nativeDeps;
env = pkgs.lib.lists.optionals pkgs.stdenv.isLinux [
{
name = "LD_LIBRARY_PATH";
prefix = "$DEVSHELL_DIR/lib";
}
{
name = "PKG_CONFIG_PATH";
prefix = "$DEVSHELL_DIR/lib/pkgconfig";
}
];
};
check = crateClippy;
package = craneLib.buildPackage (commonArgs // {
pname = "gpt-burn";
cargoArtifacts = crateClippy;
src = fs.toSource {
root = ./.;
fileset = fs.unions ([
cargoFiles
rustFiles
]);
};
postFixup = with pkgs; lib.optionalString stdenv.isLinux ''
patchelf --add-rpath ${vulkan-loader}/lib $out/bin/*
'';
});
});
in
{
checks = eachSystem (system: { default = (flake system).check; });
devShells = eachSystem (system: { default = (flake system).devShell; });
packages = eachSystem (system: { default = (flake system).package; });
};
}