From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH 1/3] gnu: Add gconfmm. Date: Sat, 20 Feb 2016 11:48:25 +0300 Message-ID: <87io1j938m.fsf@gmail.com> References: <1455721361-14591-1-git-send-email-mail@cbaines.net> <1455721361-14591-2-git-send-email-mail@cbaines.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38569) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aX3DL-0004Be-0H for guix-devel@gnu.org; Sat, 20 Feb 2016 03:48:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aX3DH-00010s-0N for guix-devel@gnu.org; Sat, 20 Feb 2016 03:48:30 -0500 Received: from mail-lf0-x22f.google.com ([2a00:1450:4010:c07::22f]:35805) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aX3DG-00010l-Nx for guix-devel@gnu.org; Sat, 20 Feb 2016 03:48:26 -0500 Received: by mail-lf0-x22f.google.com with SMTP id l143so67601860lfe.2 for ; Sat, 20 Feb 2016 00:48:26 -0800 (PST) In-Reply-To: <1455721361-14591-2-git-send-email-mail@cbaines.net> (Christopher Baines's message of "Wed, 17 Feb 2016 15:02:39 +0000") 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: Christopher Baines Cc: guix-devel@gnu.org Christopher Baines (2016-02-17 18:02 +0300) wrote: [...] > +(define-public gconfmm > + (package > + (name "gconfmm") > + (version "2.28.3") > + (source (origin > + (method url-fetch) > + (uri > + (let ((upstream-name "gconfmm")) > + (string-append "mirror://gnome/sources/" upstream-name "/" > + (version-major+minor version) "/" > + upstream-name "-" version ".tar.xz"))) I don't see a need in this 'upstream-name' variable since it is the same as the package name. -- Alex