aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-02-10 05:01:46 +0100
committerLeo Famulari <leo@famulari.name>2016-02-11 21:02:06 -0500
commitfc686f9a196a208b3d55a939d1b9062a6d046d7c (patch)
tree7f9b9f31800c327c6b2a808026be3880c93c92d0
parente57127fbe18de4e7cc79b9b2e9eac7b932a037b0 (diff)
downloadguix-fc686f9a196a208b3d55a939d1b9062a6d046d7c.tar.gz
guix-fc686f9a196a208b3d55a939d1b9062a6d046d7c.zip
gnu: Add btrfs-progs.
* gnu/packages/linux.scm (btrfs-progs): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r--gnu/packages/linux.scm36
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index d5afaf94a3..79707d69bf 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7800,14 +7800,14 @@ variables, and so on. The mode also allows you to execute Tup commands.")
(define-public emacs-compat
(package
(name "emacs-compat")
- (version "29.1.1.1")
+ (version "29.1.2.0")
(source (origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/"
"compat-" version ".tar"))
(sha256
(base32
- "16hwb432ajpl4ss2z19x0ida7kl635k1g6i69lmsc0dd7gbwp512"))))
+ "1jh6kjsqmpccry3n6x89gb8428vcxg8z451inn08lcy9fn1xqq1x"))))
(build-system emacs-build-system)
(home-page "https://git.sr.ht/~pkal/compat")
(synopsis "Emacs Lisp Compatibility Library")
6
+ (base32
+ "0jssv1ys4nw2jf7mkp58c19yspaa8ybf48fxsrhhp0683mzpr73p"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:test-target "test"
+ #:parallel-tests? #f)) ; tests fail when run in parallel
+ (inputs `(("e2fsprogs" ,e2fsprogs)
+ ("libblkid" ,util-linux)
+ ("libuuid" ,util-linux)
+ ("zlib" ,zlib)
+ ("lzo" ,lzo)))
+ (native-inputs `(("pkg-config" ,pkg-config)
+ ("asciidoc" ,asciidoc)
+ ("xmlto" ,xmlto)
+ ;; For building documentation
+ ("libxml2" ,libxml2)
+ ("docbook-xml" ,docbook-xml)
+ ("docbook-xsl" ,docbook-xsl)))
+ (home-page "https://btrfs.wiki.kernel.org/")
+ (synopsis "Create and manage btrfs copy-on-write file systems")
+ (description "Btrfs is a copy-on-write (CoW) filesystem for Linux aimed at
+implementing advanced features while focusing on fault tolerance, repair and
+easy administration.")
+ (license license:gpl2+)))