From mboxrd@z Thu Jan 1 00:00:00 1970 From: tobias.geerinckx.rice@gmail.com Subject: [PATCH 1/2] gnu: Add btrfs-progs. Date: Wed, 10 Feb 2016 05:01:46 +0100 Message-ID: <1455076907-20572-2-git-send-email-tobias.geerinckx.rice@gmail.com> References: <1455076907-20572-1-git-send-email-tobias.geerinckx.rice@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46347) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTLyo-000768-Nr for guix-devel@gnu.org; Tue, 09 Feb 2016 23:02:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aTLym-0002qM-8J for guix-devel@gnu.org; Tue, 09 Feb 2016 23:02:14 -0500 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:32799) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aTLym-0002qA-1k for guix-devel@gnu.org; Tue, 09 Feb 2016 23:02:12 -0500 Received: by mail-wm0-x242.google.com with SMTP id c200so1645079wme.0 for ; Tue, 09 Feb 2016 20:02:11 -0800 (PST) In-Reply-To: <1455076907-20572-1-git-send-email-tobias.geerinckx.rice@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org From: Tobias Geerinckx-Rice * 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 ;;; Copyright © 2015, 2016 Efraim Flashner ;;; Copyright © 2016 Christopher Allan Webber +;;; Copyright © 2016 Tobias Geerinckx-Rice ;;; ;;; 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