summary refs log tree commit diff
path: root/pkgs/development/libraries/physics/fastjet/default.nix
blob: 93c4320e78a1cc9021435287bdebffa819f5eb25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl }:

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

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

  configureFlags = "--enable-allcxxplugins";

  enableParallelBuilding = true;

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