fastnlo: init at 2.3.1pre-2212
This commit is contained in:
parent
9a5e34faca
commit
3c3e2dfd0a
23
pkgs/development/libraries/physics/fastnlo/default.nix
Normal file
23
pkgs/development/libraries/physics/fastnlo/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, boost, lhapdf, root, yoda }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fastnlo_toolkit-${version}";
|
||||
version = "2.3.1pre-2212";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://fastnlo.hepforge.org/code/v23/${name}.tar.gz";
|
||||
sha256 = "0xgnnwc002awvz6dhn7792jc8kdff843yjgvwmgcs60yvcj6blgp";
|
||||
};
|
||||
|
||||
buildInputs = [ boost lhapdf root yoda ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
descritption = "A computer code to create and evaluate fast interpolation tables of pre-computed coefficients in perturbation theory for observables in hadron-induced processes";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
homepage = http://fastnlo.hepforge.org;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
||||
};
|
||||
}
|
@ -17129,6 +17129,8 @@ in
|
||||
|
||||
fastjet = callPackage ../development/libraries/physics/fastjet { };
|
||||
|
||||
fastnlo = callPackage ../development/libraries/physics/fastnlo { };
|
||||
|
||||
geant4 = callPackage ../development/libraries/physics/geant4 {
|
||||
enableMultiThreading = true;
|
||||
enableG3toG4 = false;
|
||||
|
Loading…
Reference in New Issue
Block a user