flake-template-hell/templates/go/nix/package.nix
Artur Manuel cd612f03ad
feat(go): add go as a template
add go as a template when i need to
2024-08-11 22:44:19 +01:00

10 lines
150 B
Nix

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