summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/leiningen/default.nix
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2014-03-07 13:32:10 +0100
committerMoritz Ulrich <moritz@tarn-vedra.de>2014-03-07 13:32:10 +0100
commitbe649496884f1a9242b3989f365d73c16eabfeba (patch)
treeca9a3fd473b7ab21ba8f5554edf0266ab64b1a90 /pkgs/development/tools/build-managers/leiningen/default.nix
parent29a906b2d83cf6e7bb5fcacdfe6499415d4a7fd0 (diff)
downloadnixpkgs-be649496884f1a9242b3989f365d73c16eabfeba.tar
nixpkgs-be649496884f1a9242b3989f365d73c16eabfeba.tar.gz
nixpkgs-be649496884f1a9242b3989f365d73c16eabfeba.tar.bz2
nixpkgs-be649496884f1a9242b3989f365d73c16eabfeba.tar.lz
nixpkgs-be649496884f1a9242b3989f365d73c16eabfeba.tar.xz
nixpkgs-be649496884f1a9242b3989f365d73c16eabfeba.tar.zst
nixpkgs-be649496884f1a9242b3989f365d73c16eabfeba.zip
leiningen: Hardcode path to java.
...by setting JAVA_CMD in the wrapper.
Diffstat (limited to 'pkgs/development/tools/build-managers/leiningen/default.nix')
-rw-r--r--pkgs/development/tools/build-managers/leiningen/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/build-managers/leiningen/default.nix b/pkgs/development/tools/build-managers/leiningen/default.nix
index 2c039b3fa0c..ff21e518936 100644
--- a/pkgs/development/tools/build-managers/leiningen/default.nix
+++ b/pkgs/development/tools/build-managers/leiningen/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
 
   patches = ./lein_2.3.0.patch;
 
-  inherit rlwrap clojure gnupg findutils coreutils;
+  inherit rlwrap clojure gnupg findutils coreutils jdk;
 
   builder = ./builder.sh;