Update pkgs/default.nix
replace unstable with latest
This commit is contained in:
parent
2aeeddf3a3
commit
652bc37caa
@ -1,17 +1,17 @@
|
|||||||
{ callPackage, nixUnstable }:
|
{ callPackage, nixVersions }:
|
||||||
{
|
{
|
||||||
# Create a cpio archive comprised of many initrd's appended to
|
# Create a cpio archive comprised of many initrd's appended to
|
||||||
# each other. Harder to debug, and requires recursive Nix support,
|
# each other. Harder to debug, and requires recursive Nix support,
|
||||||
# but faster for iterating.
|
# but faster for iterating.
|
||||||
makeCpioRecursive = callPackage ./cpio-recursive {
|
makeCpioRecursive = callPackage ./cpio-recursive {
|
||||||
# nixUnstable may not be required. Todo: revisit (2020-05-25)
|
# nixUnstable may not be required. Todo: revisit (2020-05-25)
|
||||||
nix = nixUnstable;
|
nix = nixVersions.latest;
|
||||||
};
|
};
|
||||||
|
|
||||||
makePxeScript = callPackage ./pxescript {};
|
makePxeScript = callPackage ./pxescript {};
|
||||||
|
|
||||||
makeSquashfsManifest = callPackage ./squashfs-recursive {
|
makeSquashfsManifest = callPackage ./squashfs-recursive {
|
||||||
# nixUnstable may not be required. Todo: revisit (2020-05-25)
|
# nixUnstable may not be required. Todo: revisit (2020-05-25)
|
||||||
nix = nixUnstable;
|
nix = nixVersions.latest;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user