lol
at 22.05-pre 26 lines 732 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook, apfel, applgrid, lhapdf, root5 }: 2 3stdenv.mkDerivation rec { 4 pname = "apfelgrid"; 5 version = "1.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "nhartland"; 9 repo = "APFELgrid"; 10 rev = "v${version}"; 11 sha256 = "0l0cyxd00kmb5aggzwsxg83ah0qiwav0shbxkxwrz3dvw78n89jk"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook ]; 15 buildInputs = [ apfel applgrid lhapdf root5 ]; 16 17 enableParallelBuilding = true; 18 19 meta = with lib; { 20 description = "Ultra-fast theory predictions for collider observables"; 21 license = licenses.mit; 22 homepage = "http://nhartland.github.io/APFELgrid/"; 23 platforms = platforms.unix; 24 maintainers = with maintainers; [ veprbl ]; 25 }; 26}