From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [PATCH] gnu: Add CLIPper. Date: Mon, 02 Mar 2015 08:56:21 -0500 Message-ID: <87twy3zenu.fsf@netris.org> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57077) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSQpP-0003T4-Ch for guix-devel@gnu.org; Mon, 02 Mar 2015 08:56:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YSQpL-0001Kp-AU for guix-devel@gnu.org; Mon, 02 Mar 2015 08:56:11 -0500 Received: from world.peace.net ([50.252.239.5]:47094) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSQpL-0001Kk-6u for guix-devel@gnu.org; Mon, 02 Mar 2015 08:56:07 -0500 In-Reply-To: (Ricardo Wurmus's message of "Thu, 26 Feb 2015 15:13:09 +0100") 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: Ricardo Wurmus Cc: Guix-devel Ricardo Wurmus writes: > +(define-public clipper > + (package > + (name "clipper") > + (version "0.3.0") > + (source (origin > + (method url-fetch) > + (uri (string-append > + "https://github.com/YeoLab/clipper/archive/" > + version ".tar.gz")) For packages where the last component of the source URI (after the last '/') does not include the name of the package, please add something like this to the 'origin' specification: (file-name (string-append name "-" version ".tar.gz")) Without this, the name of the source tarball in the store becomes something like /gnu/store/-0.3.0.tar.gz, which is not so good. In core-updates f586c877054, I fixed as many of these as I could find (all the github ones anyway), but it seems that we'll have to make another pass at some point. In the meantime, could you fix the ones you've recently added that are not already fixed in f586c877054? Thanks! Mark