lol
1{ lib, stdenv, fetchFromGitHub, gfortran, lhapdf, python2, zlib }:
2
3stdenv.mkDerivation rec {
4 pname = "apfel";
5 version = "3.0.5";
6
7 src = fetchFromGitHub {
8 owner = "scarrazza";
9 repo = "apfel";
10 rev = version;
11 sha256 = "sha256-szEtSC/NouYlHSjVoX9Hoh7yQ0W82rVccYEF1L2tXoU=";
12 };
13
14 buildInputs = [ gfortran lhapdf python2 zlib ];
15
16 enableParallelBuilding = true;
17
18 meta = with lib; {
19 description = "A PDF Evolution Library";
20 license = licenses.gpl3;
21 homepage = "https://apfel.mi.infn.it/";
22 platforms = platforms.unix;
23 maintainers = with maintainers; [ veprbl ];
24 };
25}