Merge pull request #188058 from lovesegfault/fix-lddtree-python

pax-utils: add python3 to propagatedBuildInputs for lddtree
This commit is contained in:
Bernardo Meurer 2022-08-23 15:33:37 -03:00 committed by GitHub
commit 60de58926e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@
, meson
, ninja
, xmlto
, python3
, gitUpdater
}:
@ -27,6 +28,8 @@ stdenv.mkDerivation rec {
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ docbook_xml_dtd_44 docbook_xsl meson ninja pkg-config xmlto ];
buildInputs = [ libcap ];
# Needed for lddtree
propagatedBuildInputs = [ (python3.withPackages (p: with p; [ pyelftools ])) ];
passthru.updateScript = gitUpdater {
inherit pname version;