flake-template-hell/templates/go/nix/package.nix
Artur Manuel 1e373bd299
untitleable commit: read description
new template dropped, especially useful for me since now I can just load up a TeX environment whenever I need to. also added some names to my devShells.
2024-08-27 00:38:16 +01:00

10 lines
145 B
Nix

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