3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/physics/fastjet/default.nix

29 lines
692 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 {
pname = "fastjet";
2020-01-06 16:34:22 +00:00
version = "3.3.3";
2016-06-11 18:40:58 +01:00
src = fetchurl {
url = "http://fastjet.fr/repo/fastjet-${version}.tar.gz";
2020-01-06 16:34:22 +00:00
sha256 = "0avkgn19plq593p872hirr0yj2vgjvsi88w68ngarbp55hla1c1h";
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.gpl2Plus;
2016-06-11 18:40:58 +01:00
homepage = http://fastjet.fr/;
platforms = stdenv.lib.platforms.unix;
2018-04-27 23:33:42 +01:00
maintainers = with stdenv.lib.maintainers; [ veprbl ];
2016-06-11 18:40:58 +01:00
};
}