From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Hinsen Subject: Re: Building from a local source code checkout Date: Thu, 21 Dec 2017 07:38:53 +0100 Message-ID: References: <87tvwm1vxa.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eRuVM-0003bS-M9 for guix-devel@gnu.org; Thu, 21 Dec 2017 01:38:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eRuVJ-0005jz-IA for guix-devel@gnu.org; Thu, 21 Dec 2017 01:38:56 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:44781) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eRuVJ-0005jj-CN for guix-devel@gnu.org; Thu, 21 Dec 2017 01:38:53 -0500 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" To: Carlo Zancanaro Cc: guix-devel@gnu.org Hi Carlo, > On 20 December 2017 9:19:00 pm AEDT, Konrad Hinsen wrote: >> > guix build python-activepapers >>--with-source=~/Development/python-activepaper >>guix build: error: lstat: No such file or directory: >>"~/Development/python-activepapers" > > I found earlier today that the tilde wasn't expanded in guix package > --manifest. Maybe it's the same for --with-source. Try putting your > home directory in as an absolute path. Oops, you are right! So guix build python-activepapers --with-source=$HOME/Development/python-activepapers/ actually works, but guix build python-activepapers --with-source=$HOME/Development/python-activepapers (without the terminating slash) doesn't: guix build: error: guix/scripts/build.scm:155:6: package `python-activepapers-0.2.2' has an invalid input: ("source" "/gnu/store/bbi86dn5nq6f79lhvs7ghzisjahjaq5p-python-activepapers") Perhaps I should stop trying to understand computers ;-) Thanks, Konrad.