Forgot to wind super through attribute queries for hydra in 1d156fc
This commit is contained in:
@@ -129,14 +129,14 @@ in let
|
|||||||
pkgs =
|
pkgs =
|
||||||
builtins.listToAttrs
|
builtins.listToAttrs
|
||||||
( builtins.map ( name: { inherit name; value = pkgs.${name}; } )
|
( builtins.map ( name: { inherit name; value = pkgs.${name}; } )
|
||||||
( builtins.attrNames ( import ./pkgs/all-packages.nix { } { } ) ) );
|
( builtins.attrNames ( let self = import ./pkgs/all-packages.nix self { } self; in self ) ) );
|
||||||
|
|
||||||
# temporary - Attribute set of overlayed pkgs.
|
# temporary - Attribute set of overlayed pkgs.
|
||||||
#
|
#
|
||||||
temporary =
|
temporary =
|
||||||
builtins.listToAttrs
|
builtins.listToAttrs
|
||||||
( map ( name: { inherit name; value = pkgs.${name}; } )
|
( map ( name: { inherit name; value = pkgs.${name}; } )
|
||||||
( builtins.attrNames ( import ./temporary/all-temporary.nix { } { } ) ) );
|
( builtins.attrNames ( let self = import ./temporary/all-temporary.nix self { } self; in self ) ) );
|
||||||
};
|
};
|
||||||
|
|
||||||
in jobs
|
in jobs
|
||||||
|
|||||||
Reference in New Issue
Block a user