We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc2844e commit 0348287Copy full SHA for 0348287
1 file changed
flake.nix
@@ -128,6 +128,8 @@
128
packages = rec {
129
build2cmake = pkgs.callPackage ./pkgs/build2cmake { };
130
131
+ kernel-abi-check = pkgs.callPackage ./pkgs/kernel-abi-check { };
132
+
133
update-build = pkgs.writeShellScriptBin "update-build" ''
134
${build2cmake}/bin/build2cmake update-build ''${1:-build.toml}
135
'';
@@ -168,7 +170,11 @@
168
170
);
169
171
in
172
pkgs.linkFarm "packages-for-cache" (
- torchOutputs // lib.optionalAttrs nixpkgs.legacyPackages.${system}.stdenv.isLinux oldLinuxStdenvs
173
+ {
174
+ inherit build2cmake kernel-abi-check;
175
+ }
176
+ // torchOutputs
177
+ // lib.optionalAttrs nixpkgs.legacyPackages.${system}.stdenv.isLinux oldLinuxStdenvs
178
179
};
180
}
0 commit comments