all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: tobias.geerinckx.rice@gmail.com
To: guix-devel@gnu.org
Subject: [PATCH 1/2] gnu: Add btrfs-progs.
Date: Wed, 10 Feb 2016 05:01:46 +0100	[thread overview]
Message-ID: <1455076907-20572-2-git-send-email-tobias.geerinckx.rice@gmail.com> (raw)
In-Reply-To: <1455076907-20572-1-git-send-email-tobias.geerinckx.rice@gmail.com>

From: Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>

* gnu/packages/linux.scm (btrfs-progs): New variable.
---
 gnu/packages/linux.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index e7f7bcd..33cf534 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
 ;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
+;;; Copyright © 2016 Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2467,3 +2468,36 @@ write access to exFAT devices.")
 applications running on the Linux console.  It allows users to select items
 and copy/paste text in the console and in xterm.")
     (license license:gpl2+)))
+
+(define-public btrfs-progs
+  (package
+    (name "btrfs-progs")
+    (version "4.4")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kernel.org/linux/kernel/people/kdave/"
+                          "btrfs-progs/btrfs-progs-v" version ".tar.xz"))
+     (sha256
+      (base32
+       "0jssv1ys4nw2jf7mkp58c19yspaa8ybf48fxsrhhp0683mzpr73p"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f))                              ;no test suite
+    (inputs `(("e2fsprogs" ,e2fsprogs)
+              ("libblkid" ,util-linux)
+              ("libuuid" ,util-linux)
+              ("zlib" ,zlib)
+              ("lzo" ,lzo)))
+    (native-inputs `(("pkg-config" ,pkg-config)
+                     ("asciidoc" ,asciidoc)
+                     ("xmlto" ,xmlto)
+                     ("libxml2" ,libxml2)         ;for building documentation
+                     ("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+)))
-- 
2.6.3

  reply	other threads:[~2016-02-10  4:02 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-10  4:01 Adding btrfs-progs tobias.geerinckx.rice
2016-02-10  4:01 ` tobias.geerinckx.rice [this message]
2016-02-12  2:43   ` [PATCH 1/2] gnu: Add btrfs-progs Leo Famulari
2016-02-10  4:01 ` [PATCH 2/2] install: Add btrfs-progs to the image tobias.geerinckx.rice
2016-02-12  2:44   ` Leo Famulari
2016-02-12  9:07     ` Ludovic Courtès
2016-02-12 21:47       ` Leo Famulari
2016-02-12  2:41 ` Adding btrfs-progs Leo Famulari
2016-02-12 16:03   ` Tobias Geerinckx-Rice
2016-02-12 22:10     ` Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1455076907-20572-2-git-send-email-tobias.geerinckx.rice@gmail.com \
    --to=tobias.geerinckx.rice@gmail.com \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.