Skip to content

Commit 841017d

Browse files
committed
Add nixpkgs-2511
1 parent c82d4d9 commit 841017d

File tree

4 files changed

+29
-8
lines changed

4 files changed

+29
-8
lines changed

ci.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
# short names for nixpkgs versions
2020
nixpkgsVersions = {
21-
"R2505" = inputs.nixpkgs-2505;
21+
"R2511" = inputs.nixpkgs-2511;
2222
"unstable" = inputs.nixpkgs-unstable;
2323
};
2424

@@ -64,7 +64,7 @@
6464
# cabal-install and nix-tools plans. When removing a ghc version
6565
# from here (so that is no longer cached) also remove ./materialized/ghcXXX.
6666
# Update supported-ghc-versions.md to reflect any changes made here.
67-
nixpkgs.lib.optionalAttrs (builtins.elem nixpkgsName ["R2411" "R2505"]) {
67+
nixpkgs.lib.optionalAttrs (builtins.elem nixpkgsName ["R2411" "R2505" "R2511"]) {
6868
ghc96 = false;
6969
ghc98 = false;
7070
ghc98llvm = false;

default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ self // {
100100
pkgs-2505 = import self.inputs.nixpkgs-2505 (nixpkgsArgs // {
101101
localSystem = { inherit system; };
102102
});
103+
pkgs-2511 = import self.inputs.nixpkgs-2511 (nixpkgsArgs // {
104+
localSystem = { inherit system; };
105+
});
103106
pkgs-unstable = import self.inputs.nixpkgs-unstable (nixpkgsArgs // {
104107
localSystem = { inherit system; };
105108
});

flake.lock

Lines changed: 23 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
nixpkgs-2405 = { url = "github:NixOS/nixpkgs/nixpkgs-24.05-darwin"; };
99
nixpkgs-2411 = { url = "github:NixOS/nixpkgs/nixpkgs-24.11-darwin"; };
1010
nixpkgs-2505 = { url = "github:NixOS/nixpkgs/nixpkgs-25.05-darwin"; };
11+
nixpkgs-2511 = { url = "github:NixOS/nixpkgs/nixpkgs-25.11-darwin"; };
1112
nixpkgs-unstable = { url = "github:NixOS/nixpkgs/nixpkgs-unstable"; };
1213
flake-compat = { url = "github:input-output-hk/flake-compat/hkm/gitlab-fix"; flake = false; };
1314
"hls-1.10" = { url = "github:haskell/haskell-language-server/1.10.0.0"; flake = false; };

0 commit comments

Comments
 (0)