lhapdf: 6.1.6 -> 6.2.0

This commit is contained in:
Dmitry Kalinkin
2017-07-13 23:38:57 -04:00
parent bc2c576132
commit 6778866a7a
4 changed files with 6 additions and 34 deletions
@@ -1,19 +1,15 @@
{ stdenv, fetchurl, boost, python2 }:
{ stdenv, fetchurl, python2 }:
stdenv.mkDerivation rec {
name = "lhapdf-${version}";
version = "6.1.6";
version = "6.2.0";
src = fetchurl {
url = "http://www.hepforge.org/archive/lhapdf/LHAPDF-${version}.tar.gz";
sha256 = "1sgbaxv8clcfy4d96fkwfyqcd4b29i0hwv32ry4vy69j5qiki0f2";
sha256 = "005jfapdj3mmk62p9qgvw7nyg93pqy249p1xy2ws1qx42xj76lih";
};
buildInputs = [ boost python2 ];
patches = [ ./distutils-c++.patch ];
configureFlags = "--with-boost=${boost.dev}";
buildInputs = [ python2 ];
enableParallelBuilding = true;