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

29 lines
694 B
Nix
Raw Normal View History

2017-11-17 21:23:42 +00:00
{ stdenv, fetchurl, python2 }:
2016-06-11 17:40:58 +00:00
stdenv.mkDerivation rec {
pname = "fastjet";
2020-05-21 08:01:13 +00:00
version = "3.3.4";
2016-06-11 17:40:58 +00:00
src = fetchurl {
url = "http://fastjet.fr/repo/fastjet-${version}.tar.gz";
2020-05-21 08:01:13 +00:00
sha256 = "00zwvmnp2j79z95n9lgnq67q02bqfgirqla8j9y6jd8k3r052as3";
2016-06-11 17:40:58 +00:00
};
2017-11-17 21:23:42 +00:00
buildInputs = [ python2 ];
configureFlags = [
"--enable-allcxxplugins"
"--enable-pyext"
];
2016-06-11 17:40:58 +00:00
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/";
2016-06-11 17:40:58 +00:00
platforms = stdenv.lib.platforms.unix;
2018-04-27 22:33:42 +00:00
maintainers = with stdenv.lib.maintainers; [ veprbl ];
2016-06-11 17:40:58 +00:00
};
}