diff --git a/README.md b/README.md index 068a77c97d23e3dc1e93bea31b8dcb03047f2bfe..cb96e984afebe38e81687670dcb1b1578da5042c 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,5 @@ |[opengist](https://github.com/thomiceli/opengist)|`1.4.2`| |[prospect-mail](https://github.com/julian-alarcon/prospect-mail)|`24e49ca0187884fa772a5928c56d7a9ed76441bd`| |[tclip](https://github.com/tailscale-dev/tclip)|`2c99626eb040cb9a54cdf4015c5d2bfd0a7be038`| # jolheiser NUR - -# jolheiser NUR |Package|Version| diff --git a/default.nix b/default.nix index 6d61e2b54ab09d7d5bd4063de563c766393d2b12..99b959f7770849c5d485fb8c12cc07ce539aec01 100644 --- a/default.nix +++ b/default.nix @@ -23,6 +23,4 @@ opengist = pkgs.callPackage ./pkgs/opengist {}; prospect-mail = pkgs.callPackage ./pkgs/prospect-mail {}; tclip = pkgs.callPackage ./pkgs/tclip {}; # It should return a set of nix derivations -# It should NOT import . Instead, you should take pkgs as an argument. -# It should return a set of nix derivations # Having pkgs default to is fine though, and it lets you use short diff --git a/pkgs/templ/default.nix b/pkgs/templ/default.nix deleted file mode 100644 index e1376e0d8fc293b2a6d430e058efc78b04361779..0000000000000000000000000000000000000000 --- a/pkgs/templ/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - buildGoModule, - fetchFromGitHub, - lib, - ... -}: -buildGoModule rec { - pname = "templ"; - version = "0.2.334"; - - src = fetchFromGitHub { - owner = "a-h"; - repo = "templ"; - rev = "v${version}"; - sha256 = "sha256-liELstdoh0/KaOY8TnjCmTgp2CYWk9rZnMuK1RUb3OM="; - }; - - vendorSha256 = "sha256-7QYF8BvLpTcDstkLWxR0BgBP0NUlJ20IqW/nNqMSBn4="; - - ldflags = ["-s" "-w" "-X=github.com/a-h/templ.Version=${version}"]; - - subPackages = ["cmd/templ"]; - - meta = with lib; { - description = "A language for writing HTML user interfaces in Go. "; - homepage = "https://github.com/a-h/templ"; - license = licenses.mit; - mainProgram = "templ"; - }; -}