From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Vong Subject: Re: gccgo package does not include gccgo binary Date: Tue, 12 Jul 2016 22:13:33 +0800 Message-ID: <87y457q702.fsf@gmail.com> References: <87twg1zedu.fsf@gmail.com> <87shvizcnm.fsf@guixsd-mailerver.i-did-not-set--mail-host-address--so-tickle-me> <87a8hpjyun.fsf@gmail.com> <87oa65za4k.fsf@guixsd-mailerver.i-did-not-set--mail-host-address--so-tickle-me> <87shvfmz38.fsf@gmail.com> <87h9bvyz5p.fsf@guixsd-mailerver.i-did-not-set--mail-host-address--so-tickle-me> <87shvfdsln.fsf@gmail.com> <20160712123551.GA13332@jasmine> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38998) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bMyRV-00064N-IL for help-guix@gnu.org; Tue, 12 Jul 2016 10:13:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bMyRS-0006X3-82 for help-guix@gnu.org; Tue, 12 Jul 2016 10:13:45 -0400 Received: from mail-pf0-x22f.google.com ([2607:f8b0:400e:c00::22f]:35106) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bMyRS-0006W4-1e for help-guix@gnu.org; Tue, 12 Jul 2016 10:13:42 -0400 Received: by mail-pf0-x22f.google.com with SMTP id c2so7531622pfa.2 for ; Tue, 12 Jul 2016 07:13:41 -0700 (PDT) In-Reply-To: <20160712123551.GA13332@jasmine> (Leo Famulari's message of "Tue, 12 Jul 2016 08:35:51 -0400") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Leo Famulari Cc: help-guix@gnu.org Leo Famulari writes: > On Tue, Jul 12, 2016 at 07:05:24PM +0800, Alex Vong wrote: >> I forget to tell that I am not using Guix SD but using Guix on top of >> Debian. Do you have any recommendation on this? > > This works for me in my login shell profile: > > if [ -d /etc/ssl/certs ]; then > export SSL_CERT_DIR=/etc/ssl/certs > export SSL_CERT_FILE=$SSL_CERT_DIR/ca-certificates.crt > export GIT_SSL_CAINFO=$SSL_CERT_FILE > fi It turns out Guix profile already exported this environment variable for me, so exporting it before sourcing Guix profile has no effect at all. Eventually, I get this working with certificates from Debian, GUIX_PROFILE="$HOME/.guix-profile" \ . "$HOME/.guix-profile/etc/profile" GIT_SSL_CAINFO="/etc/ssl/certs/ca-certificates.crt" export GIT_SSL_CAINFO But why are the certificates from nss-certs not usable?