Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
812 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
apfel,
applgrid,
lhapdf,
root,
zlib,
}:
stdenv.mkDerivation rec {
pname = "apfelgrid";
version = "1.0.1";
src = fetchFromGitHub {
owner = "nhartland";
repo = "APFELgrid";
tag = "v${version}";
sha256 = "0l0cyxd00kmb5aggzwsxg83ah0qiwav0shbxkxwrz3dvw78n89jk";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [
apfel
applgrid
lhapdf
root
zlib
];
enableParallelBuilding = true;
meta = with lib; {
description = "Ultra-fast theory predictions for collider observables";
mainProgram = "apfelgrid-config";
license = licenses.mit;
homepage = "https://nhartland.github.io/APFELgrid/";
platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ];
};
}