61 lines
1.6 KiB
Nix
61 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
bash,
|
|
python3,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lhapdf";
|
|
version = "6.5.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.hepforge.org/archive/lhapdf/LHAPDF-${version}.tar.gz";
|
|
sha256 = "sha256-ZB1eoJQreeREfhXlozSR/zxwMtcdYYEZk14UrSf146U=";
|
|
};
|
|
|
|
# The Apple SDK only exports locale_t from xlocale.h whereas glibc
|
|
# had decided that xlocale.h should be a part of locale.h
|
|
postPatch = lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.cc.isGNU) ''
|
|
substituteInPlace src/GridPDF.cc --replace '#include <locale>' '#include <xlocale.h>'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
bash
|
|
makeWrapper
|
|
]
|
|
++ lib.optionals (python3 != null && lib.versionAtLeast python3.version "3.10") [
|
|
python3.pkgs.cython
|
|
];
|
|
buildInputs = [ python3 ];
|
|
|
|
configureFlags = lib.optionals (python3 == null) [ "--disable-python" ];
|
|
|
|
preBuild = lib.optionalString (python3 != null && lib.versionAtLeast python3.version "3.10") ''
|
|
rm wrappers/python/lhapdf.cpp
|
|
'';
|
|
|
|
strictDeps = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
pdf_sets = import ./pdf_sets.nix { inherit lib stdenv fetchurl; };
|
|
};
|
|
|
|
postInstall = ''
|
|
patchShebangs --build $out/bin/lhapdf-config
|
|
wrapProgram $out/bin/lhapdf --prefix PYTHONPATH : "$(toPythonPath "$out")"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "General purpose interpolator, used for evaluating Parton Distribution Functions from discretised data files";
|
|
license = licenses.gpl3;
|
|
homepage = "https://www.lhapdf.org";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|