Skip to content

Commit

Permalink
Bump stackage 9.6.4 -> 9.6.6 noci
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Dec 5, 2024
1 parent 9708273 commit cadf1b5
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
17 changes: 15 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,24 @@
inputs.haskellNix.url = "github:input-output-hk/haskell.nix/angerman/fix-install_name_tool";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-24.05";

outputs = { self, flake-utils, gitignore, haskellNix, nixpkgs }@inputs:
flake-utils.lib.eachDefaultSystem (system:
outputs = { self, flake-utils, gitignore, haskellNix, nixpkgs }:
flake-utils.lib.eachSystem ["x86_64-linux" "x86_64-darwin" "aarch64-darwin"] (system:
let
overlays = [
haskellNix.overlay

# Set enableNativeBignum flag on compiler
(final: prev: {
haskell-nix = let
overrideCompiler = name: compiler: (compiler.override {
enableNativeBignum = true;
});
in
prev.lib.recursiveUpdate prev.haskell-nix {
compiler = prev.lib.mapAttrs overrideCompiler prev.haskell-nix.compiler;
};
})

(import ./nix/fix-ghc-pkgs-overlay.nix system)
];

Expand Down
2 changes: 1 addition & 1 deletion stack/stack-9.6.6.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

resolver: lts-22.41
resolver: lts-22.43

packages:
- ../
Expand Down
8 changes: 4 additions & 4 deletions stack/stack-9.6.6.yaml.lock
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ packages:
hackage: lsp-types-2.3.0.0
snapshots:
- completed:
sha256: 1e32b51d9082fdf6f3bd92accc9dfffd4ddaf406404427fb10bf76d2bc03cbbb
size: 720263
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/41.yaml
original: lts-22.41
sha256: 08bd13ce621b41a8f5e51456b38d5b46d7783ce114a50ab604d6bbab0d002146
size: 720271
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/43.yaml
original: lts-22.43

0 comments on commit cadf1b5

Please sign in to comment.