29 lines
692 B
Nix
Raw Normal View History

2017-11-17 16:23:42 -05:00
{ stdenv, fetchurl, python2 }:
2016-06-11 13:40:58 -04:00
stdenv.mkDerivation rec {
pname = "fastjet";
2020-01-06 08:34:22 -08:00
version = "3.3.3";
2016-06-11 13:40:58 -04:00
src = fetchurl {
url = "http://fastjet.fr/repo/fastjet-${version}.tar.gz";
2020-01-06 08:34:22 -08:00
sha256 = "0avkgn19plq593p872hirr0yj2vgjvsi88w68ngarbp55hla1c1h";
2016-06-11 13:40:58 -04:00
};
2017-11-17 16:23:42 -05:00
buildInputs = [ python2 ];
configureFlags = [
"--enable-allcxxplugins"
"--enable-pyext"
];
2016-06-11 13:40:58 -04:00
enableParallelBuilding = true;
meta = {
description = "A software package for jet finding in pp and e+e collisions";
license = stdenv.lib.licenses.gpl2Plus;
2016-06-11 13:40:58 -04:00
homepage = http://fastjet.fr/;
platforms = stdenv.lib.platforms.unix;
2018-04-27 18:33:42 -04:00
maintainers = with stdenv.lib.maintainers; [ veprbl ];
2016-06-11 13:40:58 -04:00
};
}