mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-10 04:21:33 +00:00
16 lines
233 B
Nix
16 lines
233 B
Nix
|
{ runCommand, mkGoEnv }:
|
||
|
|
||
|
let
|
||
|
env = mkGoEnv {
|
||
|
pwd = ./.;
|
||
|
};
|
||
|
in
|
||
|
runCommand "mkgoenv-assert" { } ''
|
||
|
if ! test -f ${env}/bin/stringer; then
|
||
|
echo "stringer command not found in env!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
ln -s ${env} $out
|
||
|
''
|