summary refs log tree commit diff
path: root/pkgs/development/libraries/physics/fastjet/default.nix
blob: 7a65da25890f0b85d21d43371f0c571569a3b4c9 (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
{ stdenv, fetchurl, python2 }:

stdenv.mkDerivation rec {
  name = "fastjet-${version}";
  version = "3.3.1";

  src = fetchurl {
    url = "http://fastjet.fr/repo/fastjet-${version}.tar.gz";
    sha256 = "0lvchyh9q2p8lb10isazw0wbwzs24yg7gxyhpj9xpvz5hydyvgvn";
  };

  buildInputs = [ python2 ];

  postPatch = ''
    substituteInPlace plugins/SISCone/SISConeBasePlugin.cc \
      --replace 'structure_of<UserScaleBase::StructureType>()' \
                'structure_of<UserScaleBase>()'
  '';

  configureFlags = [
    "--enable-allcxxplugins"
    "--enable-pyext"
    ];

  enableParallelBuilding = true;

  meta = {
    description = "A software package for jet finding in pp and e+e− collisions";
    license     = stdenv.lib.licenses.gpl2Plus;
    homepage    = http://fastjet.fr/;
    platforms   = stdenv.lib.platforms.unix;
    maintainers = with stdenv.lib.maintainers; [ veprbl ];
  };
}