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 11/15] gnu: Add xfce4-settings. Date: Wed, 10 Dec 2014 20:02:32 +0800 Message-ID: <1418212956-1698-11-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]:40736) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg0j-00051i-Gv for guix-devel@gnu.org; Wed, 10 Dec 2014 07:04:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xyg0d-0002UG-Hh for guix-devel@gnu.org; Wed, 10 Dec 2014 07:04:53 -0500 Received: from mail-pd0-x22c.google.com ([2607:f8b0:400e:c02::22c]:58967) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg0d-0002UA-AV for guix-devel@gnu.org; Wed, 10 Dec 2014 07:04:47 -0500 Received: by mail-pd0-f172.google.com with SMTP id y13so2686085pdi.3 for ; Wed, 10 Dec 2014 04:04:46 -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 (xfce4-settings): New variable. --- gnu/packages/xfce.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 5f15594..c601852 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -310,3 +310,33 @@ your system in categories, so you can quickly find and launch them.") "Session manager for Xfce, it will restores your session on startup and allows you to shutdown the computer from Xfce.") (license gpl2+))) + +(define-public xfce4-sesttings + (package + (name "xfce4-settings") + (version "4.10.0") + (source (origin + (method url-fetch) + (uri (string-append "http://archive.xfce.org/xfce/4.10/src/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "0zppq747z9lrxyv5zrrvpalq7hb3gfhy9p7qbldisgv7m6dz0hq8")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs + `(("exo" ,exo) + ("garcon" ,garcon) + ("libnotify" ,libnotify) + ("libxcursor", libxcursor) + ("libxi" ,libxi) + ("libxrandr" ,libxrandr) + ("libxfce4ui" ,libxfce4ui))) + (home-page "http://www.xfce.org/") + (synopsis "XFCE Settings Manager") + (description + "Settings manager for Xfce, it can control various aspects of the desktop +like appearance, display, keyboard and mouse settings.") + (license gpl2+))) -- 2.1.2