about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2021-09-28 18:26:33 +0200
committerTimo Kaufmann <timokau@zoho.com>2021-09-28 18:41:53 +0200
commit2fb7cd664e4fe2f25ae752bddda76a9d7a7471a7 (patch)
tree949055027c55a93f5b89edd2758a016a76008a45
parentbb87e609c03cdc4627d15c24f6bb8773ecf61413 (diff)
tcl.mkTclDerivation: fix exec prefix
Shell variables are not expanded, so the old value was just the literal
string `${out}`.

Fixes #139566
-rw-r--r--pkgs/development/interpreters/tcl/mk-tcl-derivation.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/tcl/mk-tcl-derivation.nix b/pkgs/development/interpreters/tcl/mk-tcl-derivation.nix
index f3d34f13c6880..0e44eb3585935 100644
--- a/pkgs/development/interpreters/tcl/mk-tcl-derivation.nix
+++ b/pkgs/development/interpreters/tcl/mk-tcl-derivation.nix
@@ -32,7 +32,7 @@ let
   defaultTclPkgConfigureFlags = [
     "--with-tcl=${tcl}/lib"
     "--with-tclinclude=${tcl}/include"
-    "--exec-prefix=\${out}"
+    "--exec-prefix=${placeholder "out"}"
   ];
 
   self = (stdenv.mkDerivation ((builtins.removeAttrs attrs [