Missing a slash

This commit is contained in:
niten 2022-05-29 10:38:53 -07:00
parent 83a88ce4d8
commit 769658c5b6
1 changed files with 2 additions and 2 deletions

View File

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