Merge pull request #186636 from trofi/update-pax-utils

pax-utils: 1.3.4 -> 1.3.5
This commit is contained in:
Jonas Heinrich 2022-08-16 15:48:11 +02:00 committed by GitHub
commit 368c8f6391
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,19 +1,30 @@
{ stdenv, lib, fetchurl, bash, gitUpdater }: { stdenv
, lib
, fetchurl
, docbook_xml_dtd_44
, docbook_xsl
, libcap
, pkg-config
, meson
, ninja
, xmlto
, gitUpdater
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "pax-utils"; pname = "pax-utils";
version = "1.3.4"; version = "1.3.5";
src = fetchurl { src = fetchurl {
url = "mirror://gentoo/distfiles/${pname}-${version}.tar.xz"; url = "mirror://gentoo/distfiles/${pname}-${version}.tar.xz";
sha256 = "sha256-i67S+cWujgzaG5x1mQhkEBr8ZPrQpGFuEPP/jviRBAs="; sha256 = "sha256-8KWwPfIwiqLdeq9TuewLK0hFW4YSnkd6FkPeYpBKuHQ=";
}; };
strictDeps = true; strictDeps = true;
buildInputs = [ bash ]; nativeBuildInputs = [ docbook_xml_dtd_44 docbook_xsl meson ninja pkg-config xmlto ];
buildInputs = [ libcap ];
makeFlags = [ "PREFIX=$(out)" ];
passthru.updateScript = gitUpdater { passthru.updateScript = gitUpdater {
inherit pname version; inherit pname version;