hoppet: init at 1.2.0

+25
+23
pkgs/development/libraries/physics/hoppet/default.nix
··· 1 + { stdenv, fetchurl, gfortran }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "hoppet-${version}"; 5 + version = "1.2.0"; 6 + 7 + src = fetchurl { 8 + url = "https://hoppet.hepforge.org/downloads/${name}.tgz"; 9 + sha256 = "0j7437rh4xxbfzmkjr22ry34xm266gijzj6mvrq193fcsfzipzdz"; 10 + }; 11 + 12 + buildInputs = [ gfortran ]; 13 + 14 + enableParallelBuilding = true; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Higher Order Perturbative Parton Evolution Toolkit"; 18 + license = licenses.gpl2; 19 + homepage = https://hoppet.hepforge.org; 20 + platforms = platforms.unix; 21 + maintainers = with maintainers; [ veprbl ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 21401 21401 21402 21402 ### SCIENCE / PHYSICS 21403 21403 21404 + hoppet = callPackage ../development/libraries/physics/hoppet { }; 21405 + 21404 21406 fastjet = callPackage ../development/libraries/physics/fastjet { }; 21405 21407 21406 21408 fastnlo = callPackage ../development/libraries/physics/fastnlo { };