From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: [PATCH 12/15] gnu: Add thunar. Date: Wed, 10 Dec 2014 20:02:33 +0800 Message-ID: <1418212956-1698-12-git-send-email-iyzsong@gmail.com> References: <1418212956-1698-1-git-send-email-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40827) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg0x-00056N-1k for guix-devel@gnu.org; Wed, 10 Dec 2014 07:05:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xyg0r-0002gv-1z for guix-devel@gnu.org; Wed, 10 Dec 2014 07:05:06 -0500 Received: from mail-pa0-x235.google.com ([2607:f8b0:400e:c03::235]:52922) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg0q-0002fq-Rn for guix-devel@gnu.org; Wed, 10 Dec 2014 07:05:01 -0500 Received: by mail-pa0-f53.google.com with SMTP id kq14so2686277pab.12 for ; Wed, 10 Dec 2014 04:04:57 -0800 (PST) In-Reply-To: <1418212956-1698-1-git-send-email-iyzsong@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 * gnu/packages/xfce.scm (thunar): New variable. --- gnu/packages/xfce.scm | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index c601852..8955c0f 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -30,7 +30,10 @@ #:use-module (gnu packages image) #:use-module (gnu packages gnome) #:use-module (gnu packages pdf) - #:use-module (gnu packages gstreamer)) + #:use-module (gnu packages gstreamer) + #:use-module (gnu packages linux) + #:use-module (gnu packages photo) + #:use-module (gnu packages pcre)) (define-public gtk-xfce-engine (package @@ -340,3 +343,34 @@ allows you to shutdown the computer from Xfce.") "Settings manager for Xfce, it can control various aspects of the desktop like appearance, display, keyboard and mouse settings.") (license gpl2+))) + +(define-public thunar + (package + (name "thunar") + (version "1.4.0") + (source (origin + (method url-fetch) + (uri (string-append "http://archive.xfce.org/xfce/4.10/src/" + "Thunar-" version ".tar.bz2")) + (sha256 + (base32 + "1fn8wjzkfvnx2giv3rrg2cyrr2c96f9mskgvcji0ixyfcjga249c")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs + `(("exo" ,exo) + ("gudev", eudev) + ("libexif" ,libexif) + ("libnotify" ,libnotify) + ("libxfce4ui" ,libxfce4ui) + ("pcre" ,pcre) + ("xfce4-panel" ,xfce4-panel) + ("startup-notification" ,startup-notification))) + (home-page "http://www.xfce.org/") + (synopsis "XFCE File Manager") + (description + "A modern file manager for the Unix/Linux desktop, aiming to be easy-to-use +and fast.") + (license gpl2+))) -- 2.1.2