mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 13:05:08 +00:00
apfelgrid: init at 1.0.1
This commit is contained in:
parent
530de1cd82
commit
23e5af9e95
26
pkgs/development/libraries/physics/apfelgrid/default.nix
Normal file
26
pkgs/development/libraries/physics/apfelgrid/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user