19 lines
321 B
Nix
19 lines
321 B
Nix
with (import <nixpkgs> {});
|
|
|
|
let
|
|
buuka = haskellPackages.callPackage ./. {};
|
|
|
|
in
|
|
|
|
mkShell {
|
|
name = "shell-buuka";
|
|
buildInputs = [
|
|
hlint
|
|
ghcid
|
|
stylish-haskell
|
|
cabal2nix
|
|
haskellPackages.cabal-install
|
|
(haskellPackages.ghcWithHoogle (_: buuka.buildInputs ++ buuka.propagatedBuildInputs))
|
|
];
|
|
}
|