hoppet: init at 1.2.0

This commit is contained in:
Dmitry Kalinkin 2018-09-24 14:23:41 -04:00
parent d123b30ed1
commit af476db8cb
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchurl, gfortran }:
stdenv.mkDerivation rec {
name = "hoppet-${version}";
version = "1.2.0";
src = fetchurl {
url = "https://hoppet.hepforge.org/downloads/${name}.tgz";
sha256 = "0j7437rh4xxbfzmkjr22ry34xm266gijzj6mvrq193fcsfzipzdz";
};
buildInputs = [ gfortran ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Higher Order Perturbative Parton Evolution Toolkit";
license = licenses.gpl2;
homepage = https://hoppet.hepforge.org;
platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ];
};
}

View File

@ -21401,6 +21401,8 @@ with pkgs;
### SCIENCE / PHYSICS
hoppet = callPackage ../development/libraries/physics/hoppet { };
fastjet = callPackage ../development/libraries/physics/fastjet { };
fastnlo = callPackage ../development/libraries/physics/fastnlo { };