xfsprogs: 6.1.0 -> 6.1.1

- scrub: fix warnings/errors due to missing include (Holger Hoffstatte)
This commit is contained in:
ajs124 2023-01-14 21:56:30 +01:00
parent 3a29a0b2aa
commit 762741bbb6

View File

@ -1,14 +1,15 @@
{ lib, stdenv, buildPackages, fetchurl, autoconf, automake, gettext, libtool, pkg-config
, icu, libuuid, readline, inih, liburcu
, nixosTests
}:
stdenv.mkDerivation rec {
pname = "xfsprogs";
version = "6.1.0";
version = "6.1.1";
src = fetchurl {
url = "mirror://kernel/linux/utils/fs/xfs/xfsprogs/${pname}-${version}.tar.xz";
hash = "sha256-7OuQFcTr76VvqF+v91bMtR7Sz5w5uiOXZ/jnhwXoUlE=";
hash = "sha256-BeihN4cNsdYYLfct2pirenEA3rN2lH6FS51ZyRTCx7s=";
};
outputs = [ "bin" "dev" "out" "doc" ];
@ -45,6 +46,10 @@ stdenv.mkDerivation rec {
find . -type d -name .libs | xargs rm -rf
'';
passthru.tests = {
inherit (nixosTests.installer) lvm;
};
meta = with lib; {
homepage = "https://xfs.org/";
description = "SGI XFS utilities";