Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
61 lines
1.0 KiB
Nix
61 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
gfortran,
|
|
lhapdf,
|
|
python3,
|
|
swig,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "apfel";
|
|
version = "3.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scarrazza";
|
|
repo = "apfel";
|
|
tag = version;
|
|
hash = "sha256-0Ix7KwEZUG/NmGJ380DVJbUA0PcoEJDlcGSc09l5Tbc=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/scarrazza/apfel/pull/54
|
|
./cmake.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
swig
|
|
];
|
|
buildInputs = [
|
|
gfortran
|
|
lhapdf
|
|
python3
|
|
zlib
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DAPFEL_DOWNLOAD_PDFS=OFF"
|
|
"-DAPFEL_Python_SITEARCH=autoprefix"
|
|
];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [
|
|
lhapdf.pdf_sets.NNPDF23_nlo_as_0118
|
|
lhapdf.pdf_sets.NNPDF31_nnlo_as_0118
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-DAPFEL_VERSION=${version}";
|
|
|
|
meta = with lib; {
|
|
description = "PDF Evolution Library";
|
|
homepage = "https://apfel.mi.infn.it/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|