From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.user Subject: Re: How to build GNUTLS Guile bindings on Xubuntu Date: Thu, 15 Nov 2018 21:10:44 -0500 Message-ID: <874lch6abk.fsf@netris.org> References: <87zhuaiyua.fsf@netris.org> <1c3c23f5-c778-7878-3150-dc1db34be877@gmail.com> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1542334197 17725 195.159.176.226 (16 Nov 2018 02:09:57 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 16 Nov 2018 02:09:57 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) Cc: guile-user@gnu.org To: Zelphir Kaltstahl Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Nov 16 03:09:53 2018 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gNTZw-0004X0-VG for guile-user@m.gmane.org; Fri, 16 Nov 2018 03:09:53 +0100 Original-Received: from localhost ([::1]:41745 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gNTc3-0006zS-Bx for guile-user@m.gmane.org; Thu, 15 Nov 2018 21:12:03 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39468) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gNTba-0006zM-41 for guile-user@gnu.org; Thu, 15 Nov 2018 21:11:34 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gNTbV-0004zT-Tz for guile-user@gnu.org; Thu, 15 Nov 2018 21:11:33 -0500 Original-Received: from world.peace.net ([64.112.178.59]:47710) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gNTbV-0004yR-09 for guile-user@gnu.org; Thu, 15 Nov 2018 21:11:29 -0500 Original-Received: from mhw by world.peace.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1gNTbR-0001r9-90; Thu, 15 Nov 2018 21:11:25 -0500 In-Reply-To: <1c3c23f5-c778-7878-3150-dc1db34be877@gmail.com> (Zelphir Kaltstahl's message of "Thu, 15 Nov 2018 23:41:11 +0100") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 64.112.178.59 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.org gmane.lisp.guile.user:14999 Archived-At: Zelphir Kaltstahl writes: > I took another look at the page you linked to. The issue is, that I > would like to try Guix package manager to install GNUTLS + Guile > bindings, but Guix itself has the requirement of GNUTLS + Guile > bindings. See: > https://www.gnu.org/software/guix/manual/en/html_node/Requirements.html#Requirements > > So I guess I would need to somehow get GNUTLS and Guile bindings working > before getting Guix and then when I have Guix, I can probably somehow > link to the Guix installed GNUTLS and Guile bindings. If you install Guix using the binary installation method, this will not be an issue, because the binary install tarball is self-contained, i.e. it includes all of Guix's dependencies, including Guile, GnuTLS, sqlite3, guile-sqlite3, guile-json, libgc, libffi, etc, all the way down to the C library, even low-level things like the dynamic linker, all in /gnu/store. You should be able to unpack it on any system with a Linux kernel on one of our supported architectures, no matter how bare its userspace environment is, follow the remaining install steps described on the following page, and it should just work. https://www.gnu.org/software/guix/manual/en/html_node/Binary-Installation.html Mark