mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 12:09:08 +00:00
10 lines
242 B
Bash
10 lines
242 B
Bash
source $stdenv/setup
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
# Call once first outside of subshell for better error reporting
|
|
go mod download "$goPackagePath@$version"
|
|
|
|
dir=$(go mod download --json "$goPackagePath@$version" | jq -r .Dir)
|
|
|
|
cp -r $dir $out
|