qcdnum: fix build

It was failing on Hydra with:
ld: cannot find -lz
This commit is contained in:
Renaud 2019-11-16 18:42:04 +01:00 committed by GitHub
parent af6ffdaacb
commit 57a19cb5b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, gfortran }:
{ stdenv, fetchurl, gfortran, zlib }:
stdenv.mkDerivation rec {
pname = "QCDNUM";
@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ gfortran ];
buildInputs = [ zlib ];
enableParallelBuilding = true;