Merge pull request #95510 from hannesweisbach/patch-1
tk: fix installation on macOS
This commit is contained in:
commit
70cfd9d25e
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
|||
postInstall = ''
|
||||
ln -s $out/bin/wish* $out/bin/wish
|
||||
cp ../{unix,generic}/*.h $out/include
|
||||
ln -s $out/lib/libtk${tcl.release}.so $out/lib/libtk.so
|
||||
ln -s $out/lib/libtk${tcl.release}${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/libtk${stdenv.hostPlatform.extensions.sharedLibrary}
|
||||
''
|
||||
+ stdenv.lib.optionalString (stdenv.isDarwin) ''
|
||||
cp ../macosx/*.h $out/include
|
||||
|
|
Loading…
Reference in a new issue