summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell.nix b/shell.nix
index e17c3e6..9e363eb 100644
--- a/shell.nix
+++ b/shell.nix
@@ -3,8 +3,9 @@
3 3
4pkgs.stdenv.mkDerivation rec { 4pkgs.stdenv.mkDerivation rec {
5 name = "dirty-haskell"; 5 name = "dirty-haskell";
6 buildInputs = [ (import ./default.nix {}).dirty-haskell-wrapper 6 buildInputs = with (import ./default.nix {}); [ dirty-haskell-wrapper
7 ]; 7 (pkgs.haskellPackages.ghcWithPackages (p: with p; [ regex-tdfa ]))
8 ];
8 shellHook = '' 9 shellHook = ''
9 export PROMPT_INFO=${name} 10 export PROMPT_INFO=${name}
10 ''; 11 '';