Separate make file actions
This commit is contained in:
parent
e5dc28b282
commit
077f76eb12
3 changed files with 20 additions and 12 deletions
22
shell.nix
22
shell.nix
|
|
@ -6,15 +6,19 @@ pkgs.haskellPackages.developPackage {
|
|||
withHoogle = true;
|
||||
modifier = drv:
|
||||
pkgs.haskell.lib.addBuildTools drv (
|
||||
(with pkgs; [ hlint haskell-language-server ghc jasmin llvmPackages_15.libllvm])
|
||||
(with pkgs; [ hlint
|
||||
haskell-language-server
|
||||
ghc
|
||||
jasmin
|
||||
llvmPackages_15.libllvm
|
||||
texlive.combined.scheme-full
|
||||
])
|
||||
++
|
||||
(with pkgs.haskellPackages; [
|
||||
cabal-install
|
||||
stylish-haskell
|
||||
BNFC
|
||||
alex
|
||||
happy
|
||||
])
|
||||
);
|
||||
(with pkgs.haskellPackages; [ cabal-install
|
||||
stylish-haskell
|
||||
BNFC
|
||||
alex
|
||||
happy
|
||||
]));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue