mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
33 lines
924 B
Nix
33 lines
924 B
Nix
{ stdenv, fetchurl, python2, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lhapdf";
|
|
version = "6.2.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.hepforge.org/archive/lhapdf/LHAPDF-${version}.tar.gz";
|
|
sha256 = "1l9dv37k4jz18wahyfm9g53nyl81v5bgqgy4dllbcmvcqpfkmrnn";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ python2 ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
pdf_sets = import ./pdf_sets.nix { inherit stdenv fetchurl; };
|
|
};
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/lhapdf --prefix PYTHONPATH : "$(toPythonPath "$out")"
|
|
'';
|
|
|
|
meta = {
|
|
description = "A general purpose interpolator, used for evaluating Parton Distribution Functions from discretised data files";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
homepage = http://lhapdf.hepforge.org;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
|
};
|
|
}
|