Skip to content

Commit b50e3c9

Browse files
authored
Merge branch 'master' into angerman/fix-win-reloc
2 parents 51a9431 + 8d3f93b commit b50e3c9

File tree

143 files changed

+25224
-36
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+25224
-36
lines changed

ci.nix

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@
5252
ghc8107 = false;
5353
ghc902 = false;
5454
ghc928 = false;
55-
ghc945 = false;
55+
ghc947 = false;
5656
} // nixpkgs.lib.optionalAttrs (nixpkgsName == "R2305") {
5757
ghc8107 = false;
5858
ghc902 = false;
5959
ghc928 = false;
60-
ghc945 = false;
60+
ghc947 = false;
6161
ghc962 = false;
6262
} // nixpkgs.lib.optionalAttrs (nixpkgsName == "unstable") {
6363
ghc884 = false;
6464
ghc8107 = true;
6565
ghc902 = false;
6666
ghc928 = true;
67-
ghc945 = true;
67+
ghc947 = true;
6868
ghc962 = true;
6969
ghc9820230704 = true;
7070
}));
@@ -80,17 +80,17 @@
8080
)) {
8181
inherit (lib.systems.examples) ghcjs;
8282
} // lib.optionalAttrs (nixpkgsName == "unstable"
83-
&& ((system == "x86_64-linux" && __elem compiler-nix-name ["ghc8107" "ghc902" "ghc926" "ghc927" "ghc928" "ghc945" "ghc962" "ghc9820230704"])
83+
&& ((system == "x86_64-linux" && __elem compiler-nix-name ["ghc8107" "ghc902" "ghc926" "ghc927" "ghc928" "ghc947" "ghc962" "ghc9820230704"])
8484
|| (system == "x86_64-darwin" && __elem compiler-nix-name []))) { # TODO add ghc versions when we have more darwin build capacity
8585
inherit (lib.systems.examples) mingwW64;
86-
} // lib.optionalAttrs (system == "x86_64-linux" && nixpkgsName == "unstable" && __elem compiler-nix-name ["ghc8107" "ghc902" "ghc922" "ghc923" "ghc924" "ghc926" "ghc927" "ghc928" "ghc945" "ghc962" "ghc9820230704"]) {
86+
} // lib.optionalAttrs (system == "x86_64-linux" && nixpkgsName == "unstable" && __elem compiler-nix-name ["ghc8107" "ghc902" "ghc922" "ghc923" "ghc924" "ghc926" "ghc927" "ghc928" "ghc947" "ghc962" "ghc9820230704"]) {
8787
# Musl cross only works on linux
8888
# aarch64 cross only works on linux
8989
inherit (lib.systems.examples) musl64 aarch64-multiplatform;
9090
} // lib.optionalAttrs (system == "x86_64-linux" && nixpkgsName == "unstable" && __elem compiler-nix-name ["ghc927" "ghc928"]) {
9191
# TODO fix this for the compilers we build with hadrian (ghc >=9.4)
9292
inherit (lib.systems.examples) aarch64-multiplatform-musl;
93-
} // lib.optionalAttrs (system == "aarch64-linux" && nixpkgsName == "unstable" && __elem compiler-nix-name ["ghc927" "ghc928" "ghc945" "ghc962" "ghc9820230704"]) {
93+
} // lib.optionalAttrs (system == "aarch64-linux" && nixpkgsName == "unstable" && __elem compiler-nix-name ["ghc927" "ghc928" "ghc947" "ghc962" "ghc9820230704"]) {
9494
inherit (lib.systems.examples) aarch64-multiplatform-musl;
9595
};
9696
isDisabled = d: d.meta.disabled or false;

flake.lock

Lines changed: 29 additions & 12 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
nixpkgs-2305 = { url = "github:NixOS/nixpkgs/nixpkgs-23.05-darwin"; };
1212
nixpkgs-unstable = { url = "github:NixOS/nixpkgs/nixpkgs-unstable"; };
1313
flake-compat = { url = "github:input-output-hk/flake-compat/hkm/gitlab-fix"; flake = false; };
14-
flake-utils = { url = "github:hamishmack/flake-utils/hkm/nested-hydraJobs"; };
14+
flake-utils = { url = "github:numtide/flake-utils"; };
1515
"hls-1.10" = { url = "github:haskell/haskell-language-server/1.10.0.0"; flake = false; };
1616
"hls-2.0" = { url = "github:haskell/haskell-language-server/2.0.0.1"; flake = false; };
1717
hydra.url = "hydra";

hix/init/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This is a template created by `hix init`
33
inputs.haskellNix.url = "github:input-output-hk/haskell.nix";
44
inputs.nixpkgs.follows = "haskellNix/nixpkgs-unstable";
5-
inputs.flake-utils.follows = "haskellNix/flake-utils";
5+
inputs.flake-utils.url = "github:numtide/flake-utils";
66
outputs = { self, nixpkgs, flake-utils, haskellNix }:
77
let
88
supportedSystems = [

hix/project/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
description = "Default hix flake";
55
inputs.haskellNix.url = "github:input-output-hk/haskell.nix";
66
inputs.nixpkgs.follows = "haskellNix/nixpkgs-unstable";
7-
inputs.flake-utils.follows = "haskellNix/flake-utils";
7+
inputs.flake-utils.url = "github:numtide/flake-utils";
88
inputs.src.flake = false;
99
outputs = { self, src, nixpkgs, flake-utils, haskellNix }:
1010
flake-utils.lib.eachSystem [ "EVAL_SYSTEM" ] (system:

0 commit comments

Comments
 (0)