From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: [PATCH] gnu: Add gnome-common. Date: Wed, 15 Jul 2015 21:45:06 +0200 Message-ID: <87egk99pdp.fsf@openmailbox.org> Mime-Version: 1.0 Content-Type: text/x-diff Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42151) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFSdu-0002P7-2L for guix-devel@gnu.org; Wed, 15 Jul 2015 15:46:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZFSdq-000199-PW for guix-devel@gnu.org; Wed, 15 Jul 2015 15:46:57 -0400 Received: from smtp18.openmailbox.org ([62.4.1.52]:56574) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFSdq-00018r-Ji for guix-devel@gnu.org; Wed, 15 Jul 2015 15:46:54 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.openmailbox.org (Postfix) with ESMTP id CF4802E02FF for ; Wed, 15 Jul 2015 21:46:53 +0200 (CEST) Received: from mail.openmailbox.org ([62.4.1.34]) by localhost (mail.openmailbox.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id GcAEpCHia2xh for ; Wed, 15 Jul 2015 21:46:52 +0200 (CEST) Content-Disposition: inline; filename=0001-gnu-Add-gnome-common.patch 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 >From 9040050b26c3282c24c53adf3d82319fbf760c27 Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Mon, 13 Jul 2015 10:51:46 +0200 Subject: [PATCH] gnu: Add gnome-common. * gnu/packages/gnome.scm (gnome-common): New variable. --- gnu/packages/gnome.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 879c27e..ed25c72 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -132,6 +132,28 @@ Desktop. It is designed to be as simple as possible and has some unique features to enable users to create their discs easily and quickly.") (license license:gpl2+))) +(define-public gnome-common + (package + (name "gnome-common") + (version "3.14.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0b1676g4q44ah73c5gwl1kg88pc93pnq1pa9kwl43d0vg0pj802c")))) + (build-system gnu-build-system) + (home-page "https://www.gnome.org/") + (synopsis "Bootstrap Gnome modules built from git") + (description "Gnome-common contains various files needed to bootstrap +Gnome modules built from git. It contains a common \"autogen.sh\" script that +can be used to configure a source directory checked out from git and some +commonly used macros.") + (license license:gpl2+))) + (define-public gnome-desktop (package (name "gnome-desktop") -- 2.1.4