buuka/shell.nix

18 lines
313 B
Nix

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