From af7d281ef0056cb36b4fffaea5e0b890b5df62c7 Mon Sep 17 00:00:00 2001 From: akhesacaro Date: Sat, 2 Oct 2021 13:09:51 +0200 Subject: [PATCH] add missing dependencies into shell.nix --- nix/shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/shell.nix b/nix/shell.nix index f5a574f5..ebe07722 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -14,7 +14,7 @@ let nixos = fetchTarball { url = "https://github.com/NixOS/nixpkgs/archive/refs/ in stdenv.mkDerivation { name = "servant-dev"; - buildInputs = [ ghc zlib python3 wget cabal-install postgresql openssl ] + buildInputs = [ ghc zlib python3 wget cabal-install postgresql openssl stack haskellPackages.hspec-discover ] ++ (if tutorial then [docstuffs postgresql] else []); shellHook = '' eval $(grep export ${ghc}/bin/ghc)