From 8c025c67d5a151055ef63d2b0d94921604ff0f62 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Wed, 8 Aug 2018 13:04:06 -0400 Subject: [PATCH] Revert "Revert "Revert "release: disallow aliases""" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 0d8076b99cce5c6638abeb28153c42f698e1bc18. This has been causing people issues so it’s easiest to leave it off for now. Eventually I will do an RFC or some other PR where we can have more discussion on benefits of doing this in CI. Fixes #44299 I still think it’s still worth keeping aliases out of Nixpkgs but we don’t need to block evaluation on it. --- pkgs/top-level/release.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index f1b487d98c1..5553c4d5265 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; allowAliases = false; }; } +, nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; } }: with import ./release-lib.nix { inherit supportedSystems scrubJobs nixpkgsArgs; };