1
0
Fork 0

Add more Haskell libs to env

This commit is contained in:
Malte Brandy 2019-11-02 01:08:43 +01:00
parent 20530ffa63
commit 032e3af45d
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -28,8 +28,15 @@ rec {
doCheck = false;
});
shh = unBreak pkgs.haskellPackages.shh;
ghc = pkgs.ghc.withPackages
(p: [ (unBreak p.shh) p.brittany p.hlint p.ghcid p.cabal-install ]);
ghc = pkgs.ghc.withPackages (p: [
(unBreak p.shh)
p.brittany
p.hlint
p.ghcid
p.cabal-install
p.haskell-ci
p.shake
]);
haskellList = list: ''["${builtins.concatStringsSep ''", "'' list}"]'';
writeHaskellScript = { name ? "haskell-script", bins ? [ pkgs.coreutils ]
, libraries ? [ ], imports ? [ ] }: