Skip to content

Commit b20c488

Browse files
committed
Add Nix 2.30 and 2.31
1 parent 63ca48f commit b20c488

File tree

3 files changed

+293
-1
lines changed

3 files changed

+293
-1
lines changed

.github/workflows/cicd.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ jobs:
5757
- 2.26.4
5858
- 2.28.4
5959
- 2.29.1
60+
- 2.30.2
61+
- 2.31.0
6062
exclude:
6163
- os: ubuntu-24.04-arm
6264
nix_version: 2.3.18
@@ -96,6 +98,8 @@ jobs:
9698
- 2.26.4
9799
- 2.28.4
98100
- 2.29.1
101+
- 2.30.2
102+
- 2.31.0
99103
exclude:
100104
- os: ubuntu-24.04-arm
101105
nix_version: 2.3.18

flake.lock

Lines changed: 283 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
inputs = {
55
flake-utils.url = "github:numtide/flake-utils";
66
nixpkgs.url = "github:nixos/nixpkgs/master";
7+
nix_2_31.url = "github:nixos/nix/2.31.0";
8+
nix_2_30.url = "github:nixos/nix/2.30.2";
79
nix_2_24.url = "github:nixos/nix/2.24.15";
810
nix_2_26.url = "github:nixos/nix/2.26.4";
911
nix_2_28.url = "github:nixos/nix/2.28.4";
@@ -24,6 +26,8 @@
2426
nix_2_26,
2527
nix_2_28,
2628
nix_2_29,
29+
nix_2_30,
30+
nix_2_31
2731
}:
2832
let allSystems = [ "aarch64-linux" "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
2933
in flake-utils.lib.eachSystem allSystems (system:
@@ -61,6 +65,8 @@
6165
nix.version nix
6266
) (
6367
[
68+
nix_2_31.packages.${system}.nix
69+
nix_2_30.packages.${system}.nix
6470
nix_2_29.packages.${system}.nix
6571
nix_2_28.packages.${system}.nix
6672
nix_2_26.packages.${system}.nix

0 commit comments

Comments
 (0)