aboutsummaryrefslogtreecommitdiff
path: root/pkgs/top-level/release-python.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2020-09-11 18:20:35 +0200
committerSilvan Mosberger <contact@infinisil.com>2020-09-11 18:22:01 +0200
commitc1e96ff74f8abf0453f76bdffc827f15c887190d (patch)
tree17c97b65bff8d762850df973649f8e9e0fb6a8b8 /pkgs/top-level/release-python.nix
parentc413f10dafa7c9581d62757865059e86da30a9b6 (diff)
release*: Support nixpkgsArgs for all release-*.nix files
This is a bit dirty because there's no easy way to propagate these function arguments while still allowing --arg from the command line
Diffstat (limited to 'pkgs/top-level/release-python.nix')
-rw-r--r--pkgs/top-level/release-python.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/top-level/release-python.nix b/pkgs/top-level/release-python.nix
index 8b7240e21a33..485410356048 100644
--- a/pkgs/top-level/release-python.nix
+++ b/pkgs/top-level/release-python.nix
@@ -5,9 +5,11 @@
{ # The platforms for which we build Nixpkgs.
supportedSystems ? [ "x86_64-linux" ]
+, # Attributes passed to nixpkgs. Don't build packages marked as unfree.
+ nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
}:
-with import ./release-lib.nix {inherit supportedSystems; };
+with import ./release-lib.nix {inherit supportedSystems nixpkgsArgs; };
with lib;
let