From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pjotr Prins Subject: Creating a guix build from source system afresh Date: Fri, 13 Jul 2018 19:12:17 +0200 Message-ID: <20180713171217.7tpa4sti6oaj7a5q@thebird.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51704) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fe1cK-0003Dy-Fh for guix-devel@gnu.org; Fri, 13 Jul 2018 13:12:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fe1cF-0000dJ-KG for guix-devel@gnu.org; Fri, 13 Jul 2018 13:12:28 -0400 Received: from mail.thebird.nl ([94.142.245.5]:60206) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fe1cF-0000c9-DG for guix-devel@gnu.org; Fri, 13 Jul 2018 13:12:23 -0400 Content-Disposition: inline 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: guix-devel@gnu.org You may know that I do a build guix from guix generally which looks like env -i /bin/bash --login --noprofile --norc guix environment guix --ad-hoc help2man git strace \ pkg-config less vim binutils coreutils grep guile guile-git guile-json gcc po4a guile-sqlite3 followed by configure, make etc. (see https://gitlab.com/pjotrp/guix-notes/blob/master/INSTALL.org#L564) On one system - still on guix 0.12 - this won't work anymore - some packages have disappeared. One thing I can try is create a nar archive elsewhere of these tools (we don't happen to have a package for that?) and bump that across. Now I am doing this I realise it could be a great convenience for people wanting to start building from source on a non-Guix system when we would provide a guix pack. It would even allow Docker builds. I think it is one of the missing links that people can not easily build Guix from scratch. But maybe this is just another dumb idea ;) Pj.