From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH 1/2] gnu: Add numpy Date: Wed, 29 Oct 2014 23:30:32 +0100 Message-ID: <20141029223032.GA20824@debian> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51236) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XjblP-0004OR-0r for guix-devel@gnu.org; Wed, 29 Oct 2014 18:30:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XjblH-0006jk-HP for guix-devel@gnu.org; Wed, 29 Oct 2014 18:30:46 -0400 Content-Disposition: inline In-Reply-To: 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: Federico Beffa Cc: Guix-devel On Wed, Oct 29, 2014 at 08:55:52PM +0100, Federico Beffa wrote: > Updated patch. > - (python (string-append (assoc-ref %build-inputs "python") "/bin/"))) > + (python (string-append (assoc-ref %build-inputs "python") "/bin/")) > + (lib (string-append (assoc-ref %outputs "out") "/lib")) > + (python-lib (string-append > + (assoc-ref %build-inputs "python") "/lib/"))) > - `("python", "pydoc", "idle")))))) > + `("python", "pydoc", "idle")) > + (symlink python-lib lib))))) I do not think we should go this route and instead add the propagated input "python". In any case, these should be two separate patches. Andreas