pax-utils: 1.3.4 -> 1.3.5

Main change is the switch to meson build system.
This commit is contained in:
Sergei Trofimovich 2022-08-14 12:37:16 +01:00
parent 5c37f7fa7e
commit 3be7f4708d

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 {
pname = "pax-utils";
version = "1.3.4";
version = "1.3.5";
src = fetchurl {
url = "mirror://gentoo/distfiles/${pname}-${version}.tar.xz";
sha256 = "sha256-i67S+cWujgzaG5x1mQhkEBr8ZPrQpGFuEPP/jviRBAs=";
sha256 = "sha256-8KWwPfIwiqLdeq9TuewLK0hFW4YSnkd6FkPeYpBKuHQ=";
};
strictDeps = true;
buildInputs = [ bash ];
makeFlags = [ "PREFIX=$(out)" ];
nativeBuildInputs = [ docbook_xml_dtd_44 docbook_xsl meson ninja pkg-config xmlto ];
buildInputs = [ libcap ];
passthru.updateScript = gitUpdater {
inherit pname version;