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