nixpkgs/pkgs/development/libraries/physics/fastjet/default.nix

28 lines
639 B
Nix
Raw Normal View History

2017-11-17 21:23:42 +00:00
{ stdenv, fetchurl, python2 }:
2016-06-11 18:40:58 +01:00
stdenv.mkDerivation rec {
name = "fastjet-${version}";
2017-11-17 21:23:42 +00:00
version = "3.3.0";
2016-06-11 18:40:58 +01:00
src = fetchurl {
url = "http://fastjet.fr/repo/fastjet-${version}.tar.gz";
2017-11-17 21:23:42 +00:00
sha256 = "03x75mmnlw2m0a7669k82rf9a7dgjwygf8wjbk8cdgnb82c5pnp9";
2016-06-11 18:40:58 +01:00
};
2017-11-17 21:23:42 +00:00
buildInputs = [ python2 ];
configureFlags = [
"--enable-allcxxplugins"
"--enable-pyext"
];
2016-06-11 18:40:58 +01:00
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;
};
}