Merge pull request #39503 from veprbl/pr/sacrifice_darwin_fix
sacrifice: fix runtime on darwin
This commit is contained in:
commit
18da50d8d3
|
@ -27,6 +27,10 @@ stdenv.mkDerivation rec {
|
|||
"--with-pythia=${pythia}"
|
||||
];
|
||||
|
||||
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
install_name_tool -add_rpath ${pythia}/lib "$out"/bin/run-pythia
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in New Issue