summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index f8300e7..5f837d3 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,11 +1,14 @@
1{ pkgs ? (import <nixpkgs> {}) 1{ pkgs ? (import <nixpkgs> {})
2}: 2}:
3 3
4pkgs.stdenv.mkDerivation { 4let
5 mars = pkgs.callPackage ./mars.nix {};
6in pkgs.stdenv.mkDerivation {
5 name = "uni-env"; 7 name = "uni-env";
6 buildInputs = [ pkgs.haskellPackages.pandoc 8 buildInputs = [ pkgs.haskellPackages.pandoc
7 pkgs.gup 9 pkgs.gup
8 pkgs.jdk 10 pkgs.jdk
9 pkgs.zip 11 pkgs.zip
12 mars
10 ]; 13 ];
11} 14}