|
3 | 3 |
|
4 | 4 | inputs = {
|
5 | 5 | flake-utils.url = "github:numtide/flake-utils";
|
6 |
| - nixpkgs-nix-2_16_1.url = "nixpkgs/e999e93d55c6298d151159c9e5ca4e773ff29d1f"; |
| 6 | + nixpkgs-unstable.url = "nixpkgs/f22fdce31b752f2fe308cbf784bb211b4d650a9a"; |
7 | 7 | nixpkgs-nix-2_9_2.url = "nixpkgs/593d839e8fadea1183e071186ae1b584792d4884";
|
8 | 8 | nixpkgs-nix-2_5_1.url = "nixpkgs/89f196fe781c53cb50fef61d3063fa5e8d61b6e5";
|
9 | 9 | nixpkgs-nix-2_4.url = "nixpkgs/e912008eef096f52f28cf87492830c54ef334eb4";
|
|
24 | 24 | outputs = {
|
25 | 25 | self,
|
26 | 26 | flake-utils,
|
27 |
| - nixpkgs-nix-2_16_1, |
| 27 | + nixpkgs-unstable, |
28 | 28 | nixpkgs-nix-2_9_2,
|
29 | 29 | nixpkgs-nix-2_5_1,
|
30 | 30 | nixpkgs-nix-2_4,
|
|
37 | 37 |
|
38 | 38 | let
|
39 | 39 |
|
40 |
| - inherit (nixpkgs-nix-2_16_1) lib; |
| 40 | + inherit (nixpkgs-unstable) lib; |
41 | 41 |
|
42 | 42 | preferRemoteBuild = drv: drv.overrideAttrs (_: {
|
43 | 43 | preferLocalBuild = false;
|
44 | 44 | allowSubstitutes = true;
|
45 | 45 | });
|
46 | 46 |
|
47 |
| - pkgs = import nixpkgs-nix-2_16_1 { |
| 47 | + pkgs = import nixpkgs-unstable { |
48 | 48 | inherit system;
|
49 | 49 | overlays = [
|
50 | 50 | (self: super: super.prefer-remote-fetch self super)
|
|
67 | 67 | nixVersions = system: lib.listToAttrs (map (nix: lib.nameValuePair
|
68 | 68 | nix.version nix
|
69 | 69 | ) (
|
70 |
| - [ nixpkgs-nix-2_16_1.legacyPackages.${system}.nixVersions.nix_2_16 |
71 |
| - nixpkgs-nix-2_16_1.legacyPackages.${system}.nix |
72 |
| - nixpkgs-nix-2_16_1.legacyPackages.${system}.nixVersions.nix_2_14 |
73 |
| - nixpkgs-nix-2_16_1.legacyPackages.${system}.nixVersions.nix_2_13 |
74 |
| - nixpkgs-nix-2_16_1.legacyPackages.${system}.nixVersions.nix_2_12 |
75 |
| - nixpkgs-nix-2_16_1.legacyPackages.${system}.nixVersions.nix_2_11 |
76 |
| - nixpkgs-nix-2_16_1.legacyPackages.${system}.nixVersions.nix_2_10 |
| 70 | + [ nixpkgs-unstable.legacyPackages.${system}.nixVersions.nix_2_16 |
| 71 | + nixpkgs-unstable.legacyPackages.${system}.nixVersions.nix_2_15 |
| 72 | + nixpkgs-unstable.legacyPackages.${system}.nixVersions.nix_2_14 |
| 73 | + nixpkgs-unstable.legacyPackages.${system}.nixVersions.nix_2_13 |
| 74 | + nixpkgs-unstable.legacyPackages.${system}.nixVersions.nix_2_12 |
| 75 | + nixpkgs-unstable.legacyPackages.${system}.nixVersions.nix_2_11 |
| 76 | + nixpkgs-unstable.legacyPackages.${system}.nixVersions.nix_2_10 |
77 | 77 | nixpkgs-nix-2_9_2.legacyPackages.${system}.nixVersions.nix_2_9
|
78 | 78 | nixpkgs-nix-2_9_2.legacyPackages.${system}.nixVersions.nix_2_8
|
79 | 79 | nixpkgs-nix-2_9_2.legacyPackages.${system}.nixVersions.nix_2_7
|
80 | 80 | nixpkgs-nix-2_9_2.legacyPackages.${system}.nixVersions.nix_2_6
|
81 | 81 | nixpkgs-nix-2_5_1.legacyPackages.${system}.nix
|
82 | 82 | nixpkgs-nix-2_4.legacyPackages.${system}.nix
|
83 |
| - nixpkgs-nix-2_16_1.legacyPackages.${system}.nixVersions.nix_2_3 |
| 83 | + nixpkgs-unstable.legacyPackages.${system}.nixVersions.minimum |
84 | 84 | (import nixpkgs-nix-2_2_2 { inherit system; }).nix
|
85 | 85 | (import nixpkgs-nix-2_1_3 { inherit system; }).nix
|
86 | 86 | ] ++ lib.optionals (system == "x86_64-linux") [
|
|
0 commit comments