about summary refs log tree commit diff
path: root/pkgs/development/tools/templ/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/templ/default.nix')
-rw-r--r--pkgs/development/tools/templ/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/development/tools/templ/default.nix b/pkgs/development/tools/templ/default.nix
deleted file mode 100644
index d4380a9596097..0000000000000
--- a/pkgs/development/tools/templ/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib
-, buildGoModule
-, fetchFromGitHub
-}:
-
-buildGoModule rec {
-  pname = "templ";
-  version = "0.2.663";
-
-  subPackages = [ "cmd/templ" ];
-
-  CGO_ENABLED = 0;
-
-  ldflags = [
-    "-s"
-    "-w"
-    "-extldflags -static"
-  ];
-
-  src = fetchFromGitHub {
-    owner = "a-h";
-    repo = "templ";
-    rev = "refs/tags/v${version}";
-    hash = "sha256-TU8QG6OmUzSNDAX9W0Ntmz5cucLqVQeTskfnJbm/YM0=";
-  };
-
-  vendorHash = "sha256-Upd5Wq4ajsyOMDiAWS2g2iNO1sm1XJc43AFQLIo5eDM=";
-
-  meta = with lib; {
-    description = "A language for writing HTML user interfaces in Go";
-    homepage = "https://templ.guide/";
-    license = licenses.mit;
-    maintainers = with maintainers; [ luleyleo ];
-    mainProgram = "templ";
-  };
-}