feat(go): add go as a template

add go as a template when i need to
This commit is contained in:
Artur Manuel 2024-08-11 22:44:19 +01:00
commit cd612f03ad
Failed to generate hash of commit
8 changed files with 224 additions and 1 deletions

View file

@ -0,0 +1,10 @@
{ buildGoModule, lib }:
let
pname = "go-app";
version = "0.1.0";
in
buildGoModule {
inherit pname version;
src = ../.;
vendorHash = null;
}