mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
Merge pull request #273803 from holmesmr/fix-gerbil-soname-darwin
gerbil: fix soname of libgerbil on darwin
This commit is contained in:
commit
972446d305
@ -106,6 +106,9 @@ stdenv.mkDerivation rec {
|
||||
./install.sh
|
||||
(cd $out/bin ; ln -s ../gerbil/bin/* .)
|
||||
runHook postInstall
|
||||
'' + lib.optionalString stdenv.isDarwin ''
|
||||
libgerbil="$(realpath "$out/gerbil/lib/libgerbil.so")"
|
||||
install_name_tool -id "$libgerbil" "$libgerbil"
|
||||
'';
|
||||
|
||||
dontStrip = true;
|
||||
|
Loading…
Reference in New Issue
Block a user