nixpkgs/pkgs/development/libraries/physics/apfel/default.nix
Matthew Bauer 290a5d916e treewide: update homepages to https where available
Based on "problems" from repology:

https://repology.org/repository/nix_unstable/problems

Mostly simple changes to reflect redirects.
2019-04-15 10:10:05 -04:00

26 lines
619 B
Nix

{ 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 = https://apfel.mi.infn.it/;
platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ];
};
}