about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <matthew.bauer@obsidian.systems>2018-07-17 16:32:33 -0400
committerMatthew Bauer <matthew.bauer@obsidian.systems>2018-07-18 23:25:19 -0400
commit25c42e7736d0507fd23fb5375a9282f528cc843f (patch)
tree68c1c1572056f71f81d562e64b670851bae2922c
parent76999cc40e6c4cbfe817b3b6f125ece999ae9b73 (diff)
downloadnixlib-25c42e7736d0507fd23fb5375a9282f528cc843f.tar
nixlib-25c42e7736d0507fd23fb5375a9282f528cc843f.tar.gz
nixlib-25c42e7736d0507fd23fb5375a9282f528cc843f.tar.bz2
nixlib-25c42e7736d0507fd23fb5375a9282f528cc843f.tar.lz
nixlib-25c42e7736d0507fd23fb5375a9282f528cc843f.tar.xz
nixlib-25c42e7736d0507fd23fb5375a9282f528cc843f.tar.zst
nixlib-25c42e7736d0507fd23fb5375a9282f528cc843f.zip
release: disallow aliases
This will make hydra & ofborg ignore aliases when evluating
-rw-r--r--pkgs/top-level/release.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index 5553c4d5265e..f1b487d98c14 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -16,7 +16,7 @@
   # Strip most of attributes when evaluating to spare memory usage
 ,  scrubJobs ? true
   # Attributes passed to nixpkgs. Don't build packages marked as unfree.
-,  nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
+,  nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; allowAliases = false; }; }
 }:
 
 with import ./release-lib.nix { inherit supportedSystems scrubJobs nixpkgsArgs; };