3
0
Fork 0
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:
Peter Simons 2014-11-14 11:32:12 +01:00
commit 3d8e94bc8e

View file

@ -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;
});