Merge pull request #210760 from helsinki-systems/upd/xfsprogs
xfsprogs: 6.1.0 -> 6.1.1
This commit is contained in:
commit
6fe6edbd8a
1 changed files with 7 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue