gomod2nix/tests/ethermint/default.nix

11 lines
203 B
Nix
Raw Normal View History

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