From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH] gnu: Add laby. Date: Sat, 13 Feb 2016 09:20:32 +0100 Message-ID: <20160213082032.GA6239@debian> References: <87egcleiig.fsf@gnu.org> <87fux1y0vg.fsf@dustycloud.org> <20160211221839.73cf23b5@debian-netbook> <87k2madh1x.fsf@gnu.org> <20160212181333.GB8954@debian> <878u2pbqwr.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55001) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUVRa-00013i-9A for guix-devel@gnu.org; Sat, 13 Feb 2016 03:20:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aUVRV-0007w8-W9 for guix-devel@gnu.org; Sat, 13 Feb 2016 03:20:42 -0500 Received: from mailrelay1.public.one.com ([91.198.169.124]:26961) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aUVRV-0007vq-Dt for guix-devel@gnu.org; Sat, 13 Feb 2016 03:20:37 -0500 Content-Disposition: inline In-Reply-To: <878u2pbqwr.fsf@gnu.org> 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: Jan Nieuwenhuizen Cc: guix-devel@gnu.org On Fri, Feb 12, 2016 at 09:43:47PM +0100, Jan Nieuwenhuizen wrote: > Ah yes it is inpired by the Nix package, it is store-specific. Ocaml > wants its "core" libraries all in the same prefix, store won't allow > that. Okay. > When I hit this, I wondered if we have a way to import/convert packages > and or what Guix's policy is on that. There is a "guix import nix" command; I do not think it will go so far as to also take care of patches, but it will create a template for a scheme object from nixpkgs. "git am" complained about whitespace issues with tabs, but I suppose these are okay in make files :-) > + (inputs > + `(("camlp4" ,camlp4) > + ("m4" ,m4) > + ("ocaml" ,ocaml))) I think all of these should be native-inputs; the first two are not referenced in the result ("guix gc --references /gnu/store/..."), and ocaml is definitely needed during compile time. I moved them and pushed the patch. Thank you very much for your patience! Andreas