mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
1c29673fcc
In 787af0f79f
I had to change ${go-modules} to $goModules to allow overrideAttrs to work;
However, env vars cannot contain -, so i had to change go-modules too.
This in turn broke nix-update because it uses the go-modules attr.
Instead of making nix-update more complicated, make go-modules naming match cargoDeps.
`fd --type f | xargs sd '\bgo-modules\b' 'goModules'`
and revert change to pkgs/applications/misc/dstask/default.nix
and pkgs/servers/http/dave/default.nix
and pkgs/os-specific/darwin/plistwatch/default.nix
release note added
33 lines
1018 B
Nix
33 lines
1018 B
Nix
{ unzip
|
|
, gqlgenVersion ? "0.17.2"
|
|
}:
|
|
{
|
|
overrideModAttrs = (_: {
|
|
# No need to workaround -trimpath: it's not used in goModules,
|
|
# but do download `go generate`'s dependencies nonetheless.
|
|
preBuild = ''
|
|
go generate ./loaders
|
|
go generate ./graph
|
|
'';
|
|
});
|
|
|
|
# Workaround this error:
|
|
# go: git.sr.ht/~emersion/go-emailthreads@v0.0.0-20220412093310-4fd792e343ba: module lookup disabled by GOPROXY=off
|
|
# tidy failed: go mod tidy failed: exit status 1
|
|
# graph/generate.go:10: running "go": exit status 1
|
|
proxyVendor = true;
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
# Workaround -trimpath in the package derivation:
|
|
# https://github.com/99designs/gqlgen/issues/1537
|
|
# This is to give `go generate ./graph` access to gqlgen's *.gotpl files
|
|
# If it fails, the gqlgenVersion may have to be updated.
|
|
preBuild = ''
|
|
unzip ''${GOPROXY#"file://"}/github.com/99designs/gqlgen/@v/v${gqlgenVersion}.zip
|
|
go generate ./loaders
|
|
go generate ./graph
|
|
rm -rf github.com
|
|
'';
|
|
}
|