forked from mirrors/nixpkgs
Merge pull request #4869 from abbradar/release-packageset
release-lib: add option to use another package set
This commit is contained in:
commit
3d8e94bc8e
|
@ -1,9 +1,9 @@
|
|||
{ supportedSystems }:
|
||||
{ supportedSystems, packageSet ? (import ./all-packages.nix) }:
|
||||
|
||||
rec {
|
||||
|
||||
# Ensure that we don't build packages marked as unfree.
|
||||
allPackages = args: import ./all-packages.nix (args // {
|
||||
allPackages = args: packageSet (args // {
|
||||
config.allowUnfree = false;
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue