2021-03-16 14:27:03 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
2021-04-24 12:41:51 +00:00
|
|
|
, autoreconfHook
|
2021-03-16 14:27:03 +00:00
|
|
|
, boost
|
|
|
|
, gfortran
|
|
|
|
, lhapdf
|
2021-04-24 12:41:51 +00:00
|
|
|
, ncurses
|
2021-07-27 13:37:32 +00:00
|
|
|
, python ? null
|
2021-04-24 12:41:51 +00:00
|
|
|
, swig
|
2021-03-16 14:27:03 +00:00
|
|
|
, yoda
|
|
|
|
, zlib
|
2021-04-24 12:41:51 +00:00
|
|
|
, withPython ? false
|
2021-03-16 14:27:03 +00:00
|
|
|
}:
|
2016-12-30 17:32:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fastnlo_toolkit";
|
2021-04-24 12:33:22 +00:00
|
|
|
version = "2.3.1pre-2411";
|
2016-12-30 17:32:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-01 16:33:44 +00:00
|
|
|
urls = [
|
|
|
|
"https://fastnlo.hepforge.org/code/v23/${pname}-${version}.tar.gz"
|
|
|
|
"https://sid.ethz.ch/debian/fastnlo/${pname}-${version}.tar.gz"
|
|
|
|
];
|
2021-04-24 12:33:22 +00:00
|
|
|
sha256 = "0fm9k732pmi3prbicj2yaq815nmcjll95fagjqzf542ng3swpqnb";
|
2016-12-30 17:32:03 +00:00
|
|
|
};
|
|
|
|
|
2021-04-24 12:41:51 +00:00
|
|
|
nativeBuildInputs = lib.optional withPython autoreconfHook;
|
|
|
|
|
2021-03-16 14:27:03 +00:00
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
gfortran
|
|
|
|
gfortran.cc.lib
|
|
|
|
lhapdf
|
|
|
|
yoda
|
2021-04-24 12:41:51 +00:00
|
|
|
] ++ lib.optional withPython python
|
|
|
|
++ lib.optional (withPython && python.isPy3k) ncurses;
|
|
|
|
|
2021-03-16 14:27:03 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
zlib
|
2021-04-24 12:41:51 +00:00
|
|
|
] ++ lib.optional withPython swig;
|
2016-12-30 17:32:03 +00:00
|
|
|
|
2017-07-17 02:43:13 +00:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ./fastnlotoolkit/Makefile.in \
|
|
|
|
--replace "-fext-numeric-literals" ""
|
|
|
|
'';
|
2017-01-09 07:24:27 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-yoda=${yoda}"
|
2021-04-24 12:41:51 +00:00
|
|
|
] ++ lib.optional withPython "--enable-pyext";
|
2017-01-09 07:24:27 +00:00
|
|
|
|
2016-12-30 17:32:03 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-03-16 14:27:03 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "http://fastnlo.hepforge.org";
|
|
|
|
description = "Fast pQCD calculations for hadron-induced processes";
|
|
|
|
longDescription = ''
|
|
|
|
The fastNLO project provides computer code to create and evaluate fast
|
|
|
|
interpolation tables of pre-computed coefficients in perturbation theory
|
|
|
|
for observables in hadron-induced processes.
|
|
|
|
|
|
|
|
This allows fast theory predictions of these observables for arbitrary
|
|
|
|
parton distribution functions (of regular shape), renormalization or
|
|
|
|
factorization scale choices, and/or values of alpha_s(Mz) as e.g. needed
|
|
|
|
in PDF fits or in systematic studies. Very time consuming complete
|
|
|
|
recalculations are thus avoided.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ veprbl ];
|
|
|
|
platforms = platforms.unix;
|
2016-12-30 17:32:03 +00:00
|
|
|
};
|
|
|
|
}
|