Skip to content

Commit f019637

Browse files
committed
Add nixpkgs-2205 and update other nixpkgs pins
1 parent 3d26d9a commit f019637

File tree

4 files changed

+32
-10
lines changed

4 files changed

+32
-10
lines changed

ci.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
inherit (pkgs.haskell-nix) sources;
1212
nixpkgsVersions = {
1313
"R2111" = "nixpkgs-2111";
14+
"R2205" = "nixpkgs-2205";
1415
"unstable" = "nixpkgs-unstable";
1516
};
1617
compilerNixNames = nixpkgsName: nixpkgs: builtins.mapAttrs (compiler-nix-name: runTests: {
@@ -26,6 +27,9 @@
2627
nixpkgs.lib.optionalAttrs (nixpkgsName == "R2111") {
2728
ghc865 = false;
2829
ghc8107 = true;
30+
} // nixpkgs.lib.optionalAttrs (nixpkgsName == "R2205") {
31+
ghc865 = false;
32+
ghc8107 = true;
2933
} // nixpkgs.lib.optionalAttrs (nixpkgsName == "unstable") {
3034
ghc865 = false;
3135
ghc884 = false; # Native version is used to boot 9.0.1

flake.lock

Lines changed: 26 additions & 9 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
@@ -6,6 +6,7 @@
66
nixpkgs-2003 = { url = "github:NixOS/nixpkgs/nixpkgs-20.03-darwin"; };
77
nixpkgs-2105 = { url = "github:NixOS/nixpkgs/nixpkgs-21.05-darwin"; };
88
nixpkgs-2111 = { url = "github:NixOS/nixpkgs/nixpkgs-21.11-darwin"; };
9+
nixpkgs-2205 = { url = "github:NixOS/nixpkgs/nixpkgs-22.05-darwin"; };
910
nixpkgs-unstable = { url = "github:NixOS/nixpkgs/nixpkgs-unstable"; };
1011
flake-utils = { url = "github:numtide/flake-utils"; };
1112
hydra.url = "hydra";

release.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 'supportedSystems' restricts the set of systems that we will evaluate for. Useful when you're evaluating
22
# on a machine with e.g. no way to build the Darwin IFDs you need!
33
{ supportedSystems ? [ "x86_64-linux" "x86_64-darwin" ]
4-
, ifdLevel ? 3
4+
, ifdLevel ? 0
55
, checkMaterialization ? false }:
66

77
let

0 commit comments

Comments
 (0)