qcdnum: fix build
It was failing on Hydra with: ld: cannot find -lz
This commit is contained in:
parent
af6ffdaacb
commit
57a19cb5b6
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue