buuka/shell.nix

18 lines
311 B
Nix
Raw Normal View History

2020-12-30 18:35:47 +02:00
with (import <nixpkgs> {});
let
buuka = haskellPackages.callPackage ./. {};
in
mkShell {
name = "shell-buuka";
buildInputs = [
ghcid
stylish-haskell
cabal2nix
haskellPackages.cabal-install
2020-12-30 22:09:02 +02:00
(haskellPackages.ghcWithHoogle (_: buuka.buildInputs ++ buuka.propagatedBuildInputs))
2020-12-30 18:35:47 +02:00
];
}