File tree Expand file tree Collapse file tree 4 files changed +29
-7
lines changed Expand file tree Collapse file tree 4 files changed +29
-7
lines changed Original file line number Diff line number Diff line change 19
19
# short names for nixpkgs versions
20
20
nixpkgsVersions = {
21
21
"R2411" = inputs . nixpkgs-2411 ;
22
+ "R2505" = inputs . nixpkgs-2505 ;
22
23
"unstable" = inputs . nixpkgs-unstable ;
23
24
} ;
24
25
57
58
# cabal-install and nix-tools plans. When removing a ghc version
58
59
# from here (so that is no longer cached) also remove ./materialized/ghcXXX.
59
60
# Update supported-ghc-versions.md to reflect any changes made here.
60
- nixpkgs . lib . optionalAttrs ( nixpkgsName == "R2411" ) {
61
+ nixpkgs . lib . optionalAttrs ( builtins . elem nixpkgsName [ "R2411" "R2505" ] ) {
61
62
ghc96 = true ;
62
63
ghc98 = true ;
63
64
ghc910 = true ;
Original file line number Diff line number Diff line change @@ -97,6 +97,9 @@ self // {
97
97
pkgs-2411 = import self . inputs . nixpkgs-2411 ( nixpkgsArgs // {
98
98
localSystem = { inherit system ; } ;
99
99
} ) ;
100
+ pkgs-2505 = import self . inputs . nixpkgs-2505 ( nixpkgsArgs // {
101
+ localSystem = { inherit system ; } ;
102
+ } ) ;
100
103
pkgs-unstable = import self . inputs . nixpkgs-unstable ( nixpkgsArgs // {
101
104
localSystem = { inherit system ; } ;
102
105
} ) ;
Original file line number Diff line number Diff line change 7
7
nixpkgs-2311 = { url = "github:NixOS/nixpkgs/nixpkgs-23.11-darwin" ; } ;
8
8
nixpkgs-2405 = { url = "github:NixOS/nixpkgs/nixpkgs-24.05-darwin" ; } ;
9
9
nixpkgs-2411 = { url = "github:NixOS/nixpkgs/nixpkgs-24.11-darwin" ; } ;
10
+ nixpkgs-2505 = { url = "github:NixOS/nixpkgs/nixpkgs-25.05-darwin" ; } ;
10
11
nixpkgs-unstable = { url = "github:NixOS/nixpkgs/nixpkgs-unstable" ; } ;
11
12
flake-compat = { url = "github:input-output-hk/flake-compat/hkm/gitlab-fix" ; flake = false ; } ;
12
13
"hls-1.10" = { url = "github:haskell/haskell-language-server/1.10.0.0" ; flake = false ; } ;
You can’t perform that action at this time.
0 commit comments