diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2018-12-28 14:20:49 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2018-12-28 14:20:49 +0100 |
commit | e4231cfeeae16352e76ccdbeebe67e17da7262c4 (patch) | |
tree | 6588972b11e754e3ee1e353838cd9484e41f8cb2 /gnu/packages/linux.scm | |
parent | 11d44d0b2a701cf428dbb24b9221a9620662b948 (diff) | |
download | patches-e4231cfeeae16352e76ccdbeebe67e17da7262c4.tar patches-e4231cfeeae16352e76ccdbeebe67e17da7262c4.tar.gz |
gnu: Add xfsprogs.
* gnu/packages/linux.scm (xfsprogs): New variable.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f21a6760b9..e5107abece 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4973,3 +4973,29 @@ infrastructure for in-kernel netfilter subsystems (such as nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their respective users and/or management tools in userspace.") (license license:gpl2))) + +(define-public xfsprogs + (package + (name "xfsprogs") + (version "4.19.0") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://kernel.org/linux/utils/fs/xfs/xfsprogs/" + "xfsprogs-" version ".tar.gz")) + (sha256 + (base32 + "0gs39yiyamjw516jbak3nj4dy4h2a2g48c1mmv4wbppsccvwmwh5")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f)) ; Kernel/user integration tests are in package "xfstests" + (native-inputs + `(("gettext" ,gettext-minimal) + ("util-linux" ,util-linux))) + (home-page "https://xfs.wiki.kernel.org/") + (synopsis "XFS file system tools") + (description "This package provides commands to create and check XFS +file systems.") + ;; The library "libhandle" and the headers in "xfslibs-dev" are + ;; licensed under lgpl2.1. the other stuff is licensed under gpl2. + (license (list license:gpl2 license:lgpl2.1)))) |