astroterm: 1.0.4 -> 1.0.6 (#378908)
[NixPkgs.git] / pkgs / by-name / ap / apfelgrid / package.nix
blob45b6d88d715b24aa95df329dbd45fcac3ff7ac08
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   apfel,
7   applgrid,
8   lhapdf,
9   root5,
12 stdenv.mkDerivation rec {
13   pname = "apfelgrid";
14   version = "1.0.1";
16   src = fetchFromGitHub {
17     owner = "nhartland";
18     repo = "APFELgrid";
19     rev = "v${version}";
20     sha256 = "0l0cyxd00kmb5aggzwsxg83ah0qiwav0shbxkxwrz3dvw78n89jk";
21   };
23   nativeBuildInputs = [ autoreconfHook ];
24   buildInputs = [
25     apfel
26     applgrid
27     lhapdf
28     root5
29   ];
31   enableParallelBuilding = true;
33   meta = with lib; {
34     description = "Ultra-fast theory predictions for collider observables";
35     mainProgram = "apfelgrid-config";
36     license = licenses.mit;
37     homepage = "https://nhartland.github.io/APFELgrid/";
38     platforms = platforms.unix;
39     maintainers = with maintainers; [ veprbl ];
40   };