From mboxrd@z Thu Jan 1 00:00:00 1970 From: contact.ng0@cryptolab.net Subject: [PATCH 06/11] gnu: Add lxde-common. Date: Mon, 23 Jan 2017 18:55:54 +0000 Message-ID: <20170123185559.15596-7-contact.ng0@cryptolab.net> References: <20170123185559.15596-1-contact.ng0@cryptolab.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51628) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVjmu-0007tN-Vw for guix-devel@gnu.org; Mon, 23 Jan 2017 13:56:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVjmr-0007q0-Ii for guix-devel@gnu.org; Mon, 23 Jan 2017 13:56:21 -0500 Received: from aibo.runbox.com ([91.220.196.211]:36200) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cVjmr-0007pO-CV for guix-devel@gnu.org; Mon, 23 Jan 2017 13:56:17 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cVjmp-00033v-GG for guix-devel@gnu.org; Mon, 23 Jan 2017 19:56:15 +0100 In-Reply-To: <20170123185559.15596-1-contact.ng0@cryptolab.net> 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" To: guix-devel@gnu.org Cc: ng0 From: ng0 * gnu/packages/lxde.scm (lxde-common): New variable. --- gnu/packages/lxde.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index 8de9aaf44..e825cf9b5 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -263,4 +263,28 @@ menu spec-compliant desktop menus for LXDE.") (home-page "http://lxde.org") (license license:lgpl3))) +(define-public lxde-common + (package + (name "lxde-common") + (version "0.99.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://downloads.sourceforge.net/lxde/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0mj84fa3f4ak1jjslrwc2q3ci9zxrxpciggviza9bjb0168brn8w")))) + (build-system gnu-build-system) + (inputs + `(("lxde-icon-theme" ,lxde-icon-theme))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (synopsis "Common files of the LXDE Desktop") + (description + "Lxde-common provides common files of the LXDE Desktop.") + (home-page "http://lxde.org") + (license license:gpl2+))) + ;;; lxde.scm ends here -- 2.11.0