forked from huggingface/kernel-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoverlay.nix
More file actions
24 lines (17 loc) · 706 Bytes
/
overlay.nix
File metadata and controls
24 lines (17 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
final: prev: {
cmakeNvccThreadsHook = prev.callPackage ./pkgs/cmake-nvcc-threads-hook { };
# Local packages
build2cmake = prev.callPackage ./pkgs/build2cmake { };
get-kernel-check = prev.callPackage ./pkgs/get-kernel-check { };
kernel-abi-check = prev.callPackage ./pkgs/kernel-abi-check { };
rewrite-nix-paths-macho = prev.callPackage ./pkgs/rewrite-nix-paths-macho { };
stdenvGlibc_2_27 = prev.callPackage ./pkgs/stdenv-glibc-2_27 { };
# Python packages
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(
python-self: python-super: with python-self; {
kernel-abi-check = callPackage ./pkgs/python-modules/kernel-abi-check { };
}
)
];
}