mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-05 10:09:08 +00:00
e54afe9222
- added a test case to demonstrate the fail scenario
10 lines
203 B
Nix
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" ];
|
|
}
|