From a41c3b9068127bf78aa5903d4dd2831027d19266 Mon Sep 17 00:00:00 2001 From: niten Date: Mon, 30 May 2022 17:04:19 -0700 Subject: [PATCH] Don't print the package, print the call. --- mkClojureLib.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mkClojureLib.nix b/mkClojureLib.nix index 50d0eff..6a388ab 100644 --- a/mkClojureLib.nix +++ b/mkClojureLib.nix @@ -43,7 +43,8 @@ in stdenv.mkDerivation { :srcs ${concatStringsSep "," src-paths} \ :target ${target} ''; - in "${builtins.trace script script}"; + script-call = "${script}"; + in builtins.trace script-call script-call; installPhase = '' mv ${target}/${name}-${version}-standalone.jar $out