From 59a7e3d173c23096fe3122505b1b759f26e3292a Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Mon, 23 Jan 2017 16:08:09 +0100 Subject: Fix build --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix index f0a69b4..55efcc5 100644 --- a/shell.nix +++ b/shell.nix @@ -5,13 +5,13 @@ let thermoprintPackages = builtins.attrValues (import ./default.nix {}); ghc = haskellPackages.ghcWithPackages - (ps: thermoprintPackages ++ utilities ps ++ testDeps ps); + (ps: utilities ps ++ testDeps ps); utilities = (ps: with ps; [ hlint cabal2nix ]); testDeps = (ps: with ps; [ temporary hspec ]); in pkgs.stdenv.mkDerivation rec { name = "thermoprint-env"; - buildInputs = [ ghc ]; + buildInputs = (with pkgs; [ gup ]) ++ [ ghc ]; shellHook = '' eval $(egrep ^export ${ghc}/bin/ghc) export PROMPT_INFO="${name}" -- cgit v1.2.3