aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorJoris2017-03-05 15:44:50 +0100
committerJoris2017-03-05 15:44:50 +0100
commit8e448ffc31685427afaee62a0379c33525769a6a (patch)
tree4199b4aaf6734718f3ff65afcab422e46543ddea /shell.nix
parenta269afd23073d03faee7f3c17bdbcf8f6b5de903 (diff)
downloadcooking-8e448ffc31685427afaee62a0379c33525769a6a.tar.gz
cooking-8e448ffc31685427afaee62a0379c33525769a6a.tar.bz2
cooking-8e448ffc31685427afaee62a0379c33525769a6a.zip
Use stack
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/shell.nix b/shell.nix
index 6ede61e..6723108 100644
--- a/shell.nix
+++ b/shell.nix
@@ -2,16 +2,9 @@ with import <nixpkgs> {}; {
env = stdenv.mkDerivation {
name = "env";
buildInputs = with pkgs; [
- cabal-install
- cabal2nix
+ nodePackages.nodemon
tmux
tmuxinator
- nodePackages.nodemon
- (haskellPackages.ghcWithPackages (p: with p; [
- (haskell.lib.dontCheck hakyll)
- (haskell.lib.dontCheck clay)
- text
- ]))
];
};
}