From 9c6b0acaba8b85f2d8aa6dd3aad52a8f03aa2019 Mon Sep 17 00:00:00 2001 From: Peter Selby Date: Tue, 3 Aug 2021 14:42:50 -0700 Subject: [PATCH] Fixed build path --- worther.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worther.nix b/worther.nix index 052e9cd..b92895c 100644 --- a/worther.nix +++ b/worther.nix @@ -25,7 +25,7 @@ in pkgs.stdenv.mkDerivation { buildPhase = '' mkdir classes - java -cp ./src:${classpath} clojure.main -e "(compile '${main-class})" + java -cp .:${classpath} clojure.main -e "(compile '${main-class})" jar cmf ${manifest} out.jar -C classes worther '';