chaoszone.cz/shell.nix

15 lines
324 B
Nix
Raw Normal View History

2023-12-16 05:42:53 +00:00
{ pkgs ? import <nixpkgs> {}
, chaoszone ? import ./default.nix { inherit pkgs; packageName = "chaoszone"; }
}:
2022-01-17 11:12:25 +00:00
2023-12-16 05:42:53 +00:00
pkgs.haskellPackages.shellFor {
packages = p: [ chaoszone ];
withHoogle = true;
buildInputs = with pkgs.haskellPackages; with pkgs; [
haskell-language-server
ghcid
cabal-install
vim
];
}