gomod2nix/tests/ethermint/default.nix
HuangYi e54afe9222
fix symlink nested package
- added a test case to demonstrate the fail scenario
2022-05-20 15:54:53 +08:00

10 lines
203 B
Nix

{ stdenv, buildGoApplication }:
buildGoApplication rec {
pname = "ethermint";
version = "0.0.1";
src = ./.;
modules = ./gomod2nix.toml;
doCheck = false;
subPackages = [ "./cmd/main.go" ];
}