Merge pull request #210760 from helsinki-systems/upd/xfsprogs

xfsprogs: 6.1.0 -> 6.1.1
This commit is contained in:
ajs124 2023-01-17 21:46:39 +01:00 committed by GitHub
commit 6fe6edbd8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";