mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
Merge pull request #333282 from NickCao/julia-fix
julia: fix build by adding zlib to buildInputs
This commit is contained in:
commit
26a3db55ea
|
@ -14,6 +14,7 @@
|
|||
, gnum4
|
||||
, openssl
|
||||
, libxml2
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -40,6 +41,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [
|
||||
libxml2
|
||||
zlib
|
||||
];
|
||||
|
||||
dontUseCmakeConfigure = true;
|
||||
|
|
Loading…
Reference in a new issue