mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 20:19:08 +00:00
10 lines
177 B
Nix
10 lines
177 B
Nix
{ buildGoApplication, go, lib }:
|
|
|
|
buildGoApplication {
|
|
inherit go;
|
|
pname = "myapp";
|
|
version = "0.1";
|
|
src = ./.;
|
|
modules = ./gomod2nix.toml;
|
|
subPackages = [ "." ];
|
|
}
|