From 9502d50b3ed4b4b3b7f989eacceb72e5a1ac458d Mon Sep 17 00:00:00 2001 From: Andrew Brooks Date: Tue, 11 May 2021 12:25:25 -0500 Subject: [PATCH] tclx: fix undefined variable error --- pkgs/development/libraries/tclx/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/tclx/default.nix b/pkgs/development/libraries/tclx/default.nix index 27602684c17..a8cf2a44fab 100644 --- a/pkgs/development/libraries/tclx/default.nix +++ b/pkgs/development/libraries/tclx/default.nix @@ -12,7 +12,7 @@ tcl.mkTclDerivation rec { # required in order for tclx to properly detect tclx.tcl at runtime postInstall = '' - ln -s $prefix/lib/${tclXPkg} $prefix/lib/tclx${version}/tclx${version} + ln -s $prefix/lib/tclx${version} $prefix/lib/tclx${version}/tclx${version} ''; meta = {