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

apfel: init at 3.0.3

This commit is contained in:
Dmitry Kalinkin 2018-09-24 14:30:24 -04:00
parent 4f80119bc7
commit 530de1cd82
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, gfortran, lhapdf, python2 }:
stdenv.mkDerivation rec {
name = "apfel-${version}";
version = "3.0.3";
src = fetchFromGitHub {
owner = "scarrazza";
repo = "apfel";
rev = version;
sha256 = "13dvcc5ba6djflrcy5zf5ikaw8s78zd8ac6ickc0hxhbmx1gjb4j";
};
buildInputs = [ gfortran lhapdf python2 ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A PDF Evolution Library";
license = licenses.gpl3;
homepage = http://apfel.mi.infn.it/;
platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ];
};
}

View file

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