mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
release-cuda: account for Hydra passing extra flags (#337839)
This commit is contained in:
commit
2893de7dd8
1 changed files with 4 additions and 3 deletions
|
@ -13,6 +13,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
let
|
let
|
||||||
|
lib = import ../../lib;
|
||||||
ensureList = x: if builtins.isList x then x else [ x ];
|
ensureList = x: if builtins.isList x then x else [ x ];
|
||||||
allowUnfreePredicate =
|
allowUnfreePredicate =
|
||||||
p:
|
p:
|
||||||
|
@ -53,11 +54,11 @@ assert builtins.elem variant [
|
||||||
];
|
];
|
||||||
|
|
||||||
let
|
let
|
||||||
release-lib = import ./release-lib.nix (
|
mkReleaseLib = import ./release-lib.nix;
|
||||||
{ inherit supportedSystems nixpkgsArgs; } // builtins.removeAttrs args [ "variant" ]
|
release-lib = mkReleaseLib (
|
||||||
|
{ inherit supportedSystems nixpkgsArgs; } // lib.intersectAttrs (lib.functionArgs mkReleaseLib) args
|
||||||
);
|
);
|
||||||
|
|
||||||
inherit (release-lib) lib;
|
|
||||||
inherit (release-lib)
|
inherit (release-lib)
|
||||||
linux
|
linux
|
||||||
mapTestOn
|
mapTestOn
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue