mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
apfel: fix build
Was failing on Hydra with: ld: cannot find -lz
This commit is contained in:
parent
908f6240d8
commit
af6ffdaacb
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, gfortran, lhapdf, python2 }:
|
||||
{ stdenv, fetchFromGitHub, gfortran, lhapdf, python2, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "apfel";
|
||||
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "13n5ygbqvskg3qq5n4sff1nbii0li0zf1vqissai7x0hynxgy7p6";
|
||||
};
|
||||
|
||||
buildInputs = [ gfortran lhapdf python2 ];
|
||||
buildInputs = [ gfortran lhapdf python2 zlib ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user