From bed3695848c23a2ea98a48c42754e8b5d769e821 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 7 Dec 2017 14:17:53 -0500 Subject: [PATCH] Revert "nixUnstable: rename to nix-unstable" This commit effectively makes it impossible to upgrade to nixUnstable with nix-env without mucking about with priorities, as you can't uninstall the old nix transactionally with the new nix and if you uninstall the old one first you no longer have nix at your disposal to install the new one. This reverts commit 9711aac642b184a63498dd4bbf8a572721be53c8. --- pkgs/tools/package-management/nix/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index eadcf7a17b6..19fd026481c 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -160,7 +160,7 @@ in rec { }) // { perl-bindings = nixStable; }; nixUnstable = (lib.lowPrio (common rec { - name = "nix-unstable-1.12${suffix}"; + name = "nix-1.12${suffix}"; suffix = "pre5788_e3013543"; src = fetchFromGitHub { owner = "NixOS";