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 14/15] gnu: Add xfwm4. Date: Wed, 10 Dec 2014 20:02:35 +0800 Message-ID: <1418212956-1698-14-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]:41327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg1S-0005Hk-7f for guix-devel@gnu.org; Wed, 10 Dec 2014 07:05:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xyg1M-0003Sn-3u for guix-devel@gnu.org; Wed, 10 Dec 2014 07:05:38 -0500 Received: from mail-pa0-x22d.google.com ([2607:f8b0:400e:c03::22d]:59547) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xyg1L-0003Sc-Rj for guix-devel@gnu.org; Wed, 10 Dec 2014 07:05:32 -0500 Received: by mail-pa0-f45.google.com with SMTP id lf10so2083380pab.18 for ; Wed, 10 Dec 2014 04:05:31 -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 (xfwm4): New variable. --- gnu/packages/xfce.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index f32c250..5f2d581 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -404,3 +404,30 @@ thunar-volman is installed and configured properly, and you plug in your digitcal camera, it will automatically spawn your preferred photo application and import the new pictures from your camera.") (license gpl2+))) + +(define-public xfwm4 + (package + (name "xfwm4") + (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 + "170zzs7adj47srsi2cl723w9pl8k8awd7w1bpzxby7hj92zmf8s9")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs + `(("libwnck", libwnck-1) + ("libxfce4ui" ,libxfce4ui) + ("libxrandr" ,libxrandr) + ("libxcomposite" ,libxcomposite))) + (home-page "http://www.xfce.org/") + (synopsis "XFCE Window Manager") + (description + "Window manager for Xfce, it handles the placement of windows +on the screen.") + (license gpl2+))) -- 2.1.2