lol
1{ lib, stdenv, fetchurl, gfortran, perl }:
2
3stdenv.mkDerivation rec {
4 pname = "hoppet";
5 version = "1.2.0";
6
7 src = fetchurl {
8 url = "https://hoppet.hepforge.org/downloads/${pname}-${version}.tgz";
9 sha256 = "0j7437rh4xxbfzmkjr22ry34xm266gijzj6mvrq193fcsfzipzdz";
10 };
11
12 nativeBuildInputs = [ perl gfortran ];
13
14 enableParallelBuilding = true;
15
16 preConfigure = ''
17 patchShebangs .
18 '';
19
20 meta = with lib; {
21 description = "Higher Order Perturbative Parton Evolution Toolkit";
22 license = licenses.gpl2;
23 homepage = "https://hoppet.hepforge.org";
24 platforms = platforms.unix;
25 maintainers = with maintainers; [ veprbl ];
26 };
27}