From 762741bbb6fa3f4173c0565fd5dede1898aa8ddc Mon Sep 17 00:00:00 2001 From: ajs124 Date: Sat, 14 Jan 2023 21:56:30 +0100 Subject: [PATCH] xfsprogs: 6.1.0 -> 6.1.1 - scrub: fix warnings/errors due to missing include (Holger Hoffstatte) --- pkgs/tools/filesystems/xfsprogs/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/xfsprogs/default.nix b/pkgs/tools/filesystems/xfsprogs/default.nix index 8bcd34add4e6..7c31657dd946 100644 --- a/pkgs/tools/filesystems/xfsprogs/default.nix +++ b/pkgs/tools/filesystems/xfsprogs/default.nix @@ -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";