Merge pull request #56792 from timor/libdwarf-dwarfdump-zlib
libdwarf: add zlib to buildInputs
This commit is contained in:
commit
6d52e26818
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, libelf }:
|
||||
{ stdenv, fetchurl, libelf, zlib }:
|
||||
|
||||
let
|
||||
version = "20181024";
|
||||
|
@ -24,7 +24,7 @@ in rec {
|
|||
preConfigure = ''
|
||||
cd libdwarf
|
||||
'';
|
||||
buildInputs = [ libelf ];
|
||||
buildInputs = [ libelf zlib ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/lib $out/include
|
||||
|
|
Loading…
Reference in a new issue