Skip to content

Commit

Permalink
fix cabal shell
Browse files Browse the repository at this point in the history
  • Loading branch information
goodlyrottenapple committed Oct 16, 2023
1 parent 04b073a commit 3cd32d1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@
haskellPackages.fourmolu_0_12_0_0)
];
};
cabal = with nixpkgsFor system;
haskell-backend.pkgSet.shellFor {
packages = haskell-backend.localPkgsSelector;
nativeBuildInputs = [ haskell.packages.ghc928.cabal-install z3 ];
};

cabal = let pkgs = nixpkgsFor system;
in pkgs.haskell-backend.pkgSet.shellFor {
packages = pkgs.haskell-backend.localPkgsSelector;
nativeBuildInputs =
[ pkgs.haskell.packages.ghc928.cabal-install pkgs.z3 ];
};
});

devShell =
Expand Down

0 comments on commit 3cd32d1

Please sign in to comment.