sacrifice: set LD_LIBRARY_PATH for pythia plugins to work

This commit is contained in:
Dmitry Kalinkin 2018-04-26 18:09:26 -04:00
parent 1cfc5f1da2
commit 2f47c93ec8
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, boost, hepmc, lhapdf, pythia }: { stdenv, fetchurl, boost, hepmc, lhapdf, pythia, makeWrapper }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "sacrifice-${version}"; name = "sacrifice-${version}";
@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
}; };
buildInputs = [ boost hepmc lhapdf pythia ]; buildInputs = [ boost hepmc lhapdf pythia ];
nativeBuildInputs = [ makeWrapper ];
patches = [ patches = [
./compat.patch ./compat.patch
@ -27,8 +28,11 @@ stdenv.mkDerivation rec {
"--with-pythia=${pythia}" "--with-pythia=${pythia}"
]; ];
postInstall = stdenv.lib.optionalString stdenv.isDarwin '' postInstall = if stdenv.isDarwin then ''
install_name_tool -add_rpath ${pythia}/lib "$out"/bin/run-pythia install_name_tool -add_rpath ${pythia}/lib "$out"/bin/run-pythia
'' else ''
wrapProgram $out/bin/run-pythia \
--prefix LD_LIBRARY_PATH : "${pythia}/lib"
''; '';
enableParallelBuilding = true; enableParallelBuilding = true;