Sure - I understand the reasoning - but this is an open-source project with its own build system that I'm trying to package, and I believe its build system depends on network access (it's Go-based, and my understanding is that the Go dependency model relies on access to numerous external Git repos). Is such a project unsupportable by Guix?
On Fri, Nov 20, 2020 at 3:47 PM Christopher Baines <m...@cbaines.net> wrote: > > Stephen Scheck <singularsyn...@gmail.com> writes: > > > I'm getting the following error when I try to install a package I'm > working > > on: > > > > go: github.com/BurntSushi/toml@v0.3.1: Get " > > https://proxy.golang.org/github.com/%21burnt%21sushi/toml/@v/v0.3.1.mod > ": > > dial tcp: lookup proxy.golang.org on [::1]:53: read udp > > [::1]:43973->[::1]:53: read: connection refused > > > > It uses `gnu-build-system`. Is there some package that needs to be added > to > > the build inputs for ordinary name resolution to work? > > To ensure that builds don't depend on the network, the build processes > don't have network access. > > This could mean you're missing something in the build environment (an > input), or that there's an input being ignored (and the network is being > used to try and fetch it). > > Does that make sense? > > Chris >