summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/shell.nix b/shell.nix
index 3da569e..81aca9d 100644
--- a/shell.nix
+++ b/shell.nix
@@ -3,8 +3,7 @@
3 3
4pkgs.stdenv.mkDerivation rec { 4pkgs.stdenv.mkDerivation rec {
5 name = "uni-env"; 5 name = "uni-env";
6 buildInputs = [ pkgs.haskellPackages.pandoc 6 buildInputs = [ pkgs.gup
7 pkgs.gup
8 pkgs.jdk 7 pkgs.jdk
9 pkgs.zip 8 pkgs.zip
10 pkgs.strace 9 pkgs.strace
@@ -12,8 +11,11 @@ pkgs.stdenv.mkDerivation rec {
12 (pkgs.callPackage ./mars.nix {}) 11 (pkgs.callPackage ./mars.nix {})
13 pkgs.sqlite 12 pkgs.sqlite
14 (pkgs.haskellPackages.ghcWithPackages (p: 13 (pkgs.haskellPackages.ghcWithPackages (p:
15 with p; [ yesod yesod-bin 14 with p; [ yesod yesod-bin pandoc
16 ])) 15 ]))
16 (pkgs.texlive.combine {
17 inherit (pkgs.texlive) scheme-small libertine tipa cm-super context bussproofs mweights fontaxes;
18 })
17 ]; 19 ];
18 shellHook = '' 20 shellHook = ''
19 export PROMPT_INFO="${name}" 21 export PROMPT_INFO="${name}"