From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH] gnu: Add file-roller. Date: Sat, 19 Sep 2015 19:21:56 -0400 Message-ID: <874miqknaj.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46892) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZdRSB-0003FU-L8 for guix-devel@gnu.org; Sat, 19 Sep 2015 19:22:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZdRSA-0005AF-L8 for guix-devel@gnu.org; Sat, 19 Sep 2015 19:21:59 -0400 Received: from mail.fsf.org ([208.118.235.13]:34485) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZdRSA-0005AB-H9 for guix-devel@gnu.org; Sat, 19 Sep 2015 19:21:58 -0400 Received: from 209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.40.86]:36238 helo=izanagi) by mail.fsf.org with esmtpsa (TLS-1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1ZdRSA-00065u-5O for guix-devel@gnu.org; Sat, 19 Sep 2015 19:21:58 -0400 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 --=-=-= Content-Type: text/plain Been missing this program for awhile, so here it is! --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-file-roller.patch Content-Transfer-Encoding: quoted-printable >From 241f44af6ba5229c6fdeda0fadd50345f4abaf60 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 19 Sep 2015 19:20:52 -0400 Subject: [PATCH] gnu: Add file-roller. * gnu/packages/gnome.scm (file-roller): New variable. --- gnu/packages/gnome.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index ca75fa8..43c918a 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -10,6 +10,7 @@ ;;; Copyright =C2=A9 2015 David Hashe ;;; Copyright =C2=A9 2015 Ricardo Wurmus ;;; Copyright =C2=A9 2015 Mark H Weaver +;;; Copyright =C2=A9 2015 David Thompson ;;; ;;; This file is part of GNU Guix. ;;; @@ -3500,3 +3501,36 @@ manage, and publish documentation for Yelp and the w= eb. Most of the heavy lifting is done by packages like yelp-xsl and itstool. This package just wraps things up in a developer-friendly way.") (license license:gpl2+))) + +(define-public file-roller + (package + (name "file-roller") + (version "3.10.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "04sg4yzz4c3hzgxhbgx2dc36lq5hjrnrmal2q0amfvhl0jcvp2fq")))) + (build-system glib-or-gtk-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + ;; TODO: Add libnautilus. + (inputs + `(("gtk+" ,gtk+) + ("gdk-pixbuf" ,gdk-pixbuf) + ("json-glib" ,json-glib) + ("libarchive" ,libarchive) + ("libnotify" ,libnotify) + ("nettle" ,nettle))) + (propagated-inputs + `(("itstool" ,itstool) + ("xmllint" ,libxml2))) + (synopsis "Graphical archive manager for GNOME") + (description "File Roller is an archive manager for the GNOME desktop +environment.") + (home-page "http://fileroller.sourceforge.net/") + (license license:gpl2+))) --=20 2.5.0 --=-=-= Content-Type: text/plain -- David Thompson GPG Key: 0FF1D807 --=-=-=--