{ lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "templ"; version = "0.2.697"; src = fetchFromGitHub { owner = "a-h"; repo = "templ"; rev = "v${version}"; hash = "sha256-z/sb4AlFOU20sBEAu12VSXqhHQuqvj3mUu7JTvyc1pI="; }; vendorHash = "sha256-Fa6bmG0yfbICMfHlM52V+obxoVsQa4VNydIHXS+lGxw="; subPackages = [ "cmd/templ" ]; CGO_ENABLED = 0; ldflags = [ "-s" "-w" "-extldflags -static" ]; meta = { description = "A language for writing HTML user interfaces in Go"; homepage = "https://github.com/a-h/templ"; license = lib.licenses.mit; mainProgram = "templ"; maintainers = with lib.maintainers; [ luleyleo ]; }; }