Skip to content

Commit 0503f70

Browse files
committed
code: bump flake
1 parent 931f20b commit 0503f70

3 files changed

Lines changed: 31 additions & 13 deletions

File tree

code/flake.lock

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

code/flake.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
, ...
1616
}@attrs :
1717
let
18-
version = "924";
18+
version = "910";
1919
compiler = "ghc${version}";
2020

2121
overlay-ghc = final: prev: {
2222
ghc = prev.haskell.packages.${compiler}.ghcWithHoogle (hp: with hp;
23-
[ base containers deepseq gauge random unordered-containers stm
23+
[ base containers deepseq random unordered-containers stm
2424
arrows bytestring array directory process
2525
]);
2626

@@ -33,7 +33,7 @@
3333
let pkgs = import nixpkgs { inherit system ;
3434
overlays = [ overlay-ghc ];
3535
};
36-
lethargy = pkgs.callPackage ./lethargy.nix { inherit pkgs; };
36+
lethargy = pkgs.callPackage ./lethargy/lethargy.nix { inherit pkgs; };
3737
in
3838

3939
rec {

code/lethargy/lethargy.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ stdenv.mkDerivation {
88
isExecutable = true;
99
buildInputs = [ ghc haskell-language-server cabal-install haskellPackages.eventlog2html haskellPackages.ghc-events ];
1010
executableHaskellDepends = with haskellPackages; [ base ];
11-
benchmarkHaskellDepends = with haskellPackages;[ base containers deepseq gauge random ];
11+
benchmarkHaskellDepends = with haskellPackages;[ base containers deepseq random ];
1212
mainProgram = "lethargy";
1313
}

0 commit comments

Comments
 (0)