Remove nixUnstable

Now that we have regular (6-weekly) releases, there no longer is a
compelling reason to have an unstable version of Nix in
Nixpkgs. People who really need the bleeding edge can use the 'nix'
flake.
This commit is contained in:
Eelco Dolstra 2022-05-31 15:16:03 +02:00
parent f51cb36f2c
commit f888642ec6
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE

View File

@ -87,15 +87,5 @@ in lib.makeExtensible (self: {
stable = self.nix_2_8;
# remember to backport updates to the stable branch!
unstable = lib.lowPrio (common rec {
version = "2.8";
suffix = "pre20220530_${lib.substring 0 7 src.rev}";
src = fetchFromGitHub {
owner = "NixOS";
repo = "nix";
rev = "af23d38019a47e5bb4cd6585a1678b37c957130c";
sha256 = "sha256-RH77Y4IhbTofNYlLQSGKLL0fJAG9iHSwRNvMEZ4M0VQ=";
};
});
unstable = self.stable;
})