A couple fixes

This commit is contained in:
niten 2022-05-29 10:48:37 -07:00
parent 096efad499
commit 8605c110af
1 changed files with 3 additions and 3 deletions

View File

@ -39,13 +39,13 @@ in stdenv.mkDerivation {
mkdir -p ${target}
clojure \
-Scp ${classpath} \
-Scp .:${build-tools-jar}:${classpath} \
-Sdeps ${build-tools-deps} \
-X:build \
lib-uberjar \
:project ${group}/${name} \
:version ${version}" \
:srcs ${concatStringsSep "," src-paths}" \
:version ${version} \
:srcs ${concatStringsSep "," src-paths} \
:target ${target}
'';
in builtins.trace cmd cmd;