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

29 lines
691 B
Nix
Raw Normal View History

2019-01-11 03:10:05 +00:00
{ stdenv, fetchurl, gfortran, perl }:
2018-09-24 18:23:41 +00:00
stdenv.mkDerivation rec {
pname = "hoppet";
2018-09-24 18:23:41 +00:00
version = "1.2.0";
src = fetchurl {
url = "https://hoppet.hepforge.org/downloads/${pname}-${version}.tgz";
2018-09-24 18:23:41 +00:00
sha256 = "0j7437rh4xxbfzmkjr22ry34xm266gijzj6mvrq193fcsfzipzdz";
};
buildInputs = [ gfortran ];
2019-01-11 03:10:05 +00:00
nativeBuildInputs = [ perl ];
2018-09-24 18:23:41 +00:00
enableParallelBuilding = true;
2019-01-11 03:10:05 +00:00
preConfigure = ''
patchShebangs .
'';
2018-09-24 18:23:41 +00:00
meta = with stdenv.lib; {
description = "Higher Order Perturbative Parton Evolution Toolkit";
license = licenses.gpl2;
homepage = "https://hoppet.hepforge.org";
2018-09-24 18:23:41 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ];
};
}