summary refs log tree commit diff
path: root/pkgs/applications/science/physics/sacrifice/default.nix
blob: 6c25f720ebf96aa31bcf4a25408ef64dcbe86599 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ stdenv, fetchurl, boost, hepmc, lhapdf, pythia, makeWrapper }:

stdenv.mkDerivation rec {
  name = "sacrifice-${version}";
  version = "1.0.0";

  src = fetchurl {
    url = "http://www.hepforge.org/archive/agile/Sacrifice-1.0.0.tar.gz";
    sha256 = "10bvpq63kmszy1habydwncm0j1dgvam0fkrmvkgbkvf804dcjp6g";
  };

  buildInputs = [ boost hepmc lhapdf pythia ];
  nativeBuildInputs = [ makeWrapper ];

  patches = [
    ./compat.patch
  ];

  preConfigure = ''
    substituteInPlace configure --replace HAVE_LCG=yes HAVE_LCG=no
  ''
  + stdenv.lib.optionalString stdenv.isDarwin ''
    substituteInPlace configure --replace LIB_SUFFIX=\"so\" LIB_SUFFIX=\"dylib\"
  '';

  configureFlags = [
    "--with-HepMC=${hepmc}"
    "--with-pythia=${pythia}"
  ];

  postInstall = if stdenv.isDarwin then ''
    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;

  meta = {
    description = "A standalone contribution to AGILe for steering Pythia 8";
    license     = stdenv.lib.licenses.gpl2;
    homepage    = https://agile.hepforge.org/trac/wiki/Sacrifice;
    platforms   = stdenv.lib.platforms.unix;
    maintainers = with stdenv.lib.maintainers; [ veprbl ];
  };
}