1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

apfelgrid: init at 1.0.1

This commit is contained in:
Dmitry Kalinkin 2018-09-24 14:31:04 -04:00
parent 530de1cd82
commit 23e5af9e95
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, autoreconfHook, apfel, applgrid, lhapdf, root }:
stdenv.mkDerivation rec {
name = "apfelgrid-${version}";
version = "1.0.1";
src = fetchFromGitHub {
owner = "nhartland";
repo = "APFELgrid";
rev = "v${version}";
sha256 = "0l0cyxd00kmb5aggzwsxg83ah0qiwav0shbxkxwrz3dvw78n89jk";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ apfel applgrid lhapdf root ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Ultra-fast theory predictions for collider observables";
license = licenses.mit;
homepage = http://nhartland.github.io/APFELgrid/;
platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ];
};
}

View file

@ -21405,6 +21405,8 @@ with pkgs;
### SCIENCE / PHYSICS
apfelgrid = callPackage ../development/libraries/physics/apfelgrid { };
apfel = callPackage ../development/libraries/physics/apfel { };
applgrid = callPackage ../development/libraries/physics/applgrid { };