Skip to content

Commit

Permalink
Add jade
Browse files Browse the repository at this point in the history
  • Loading branch information
42LoCo42 committed Apr 13, 2024
1 parent d417280 commit 118ec2a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ A personal collection of unusual things
|`foot-transparent`|A fast, lightweight and minimalistic Wayland terminal emulator|https://codeberg.org/dnkl/foot/|
|`fusepod`|A userspace filesystem which mounts your iPod.|https://github.com/keegancsmith/FUSEPod|
|`gtk4-layer-shell`|A library to desktop components for Wayland using the Layer Shell protocol and GTK4|https://github.com/wmww/gtk4-layer-shell|
|`jade`|Pug template engine for Go|https://github.com/Joker/jade|
|`k0s-bin`|The Zero Friction Kubernetes|https://k0sproject.io|
|`libhpke`|HPKE implementation in C|https://github.com/oktaysm/hpke|
|`lone`|The standalone Linux Lisp|https://github.com/lone-lang/lone|
Expand Down
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
foot-transparent = pkgs.callPackage ./packages/foot-transparent { };
fusepod = pkgs.callPackage ./packages/fusepod.nix { };
gtk4-layer-shell = pkgs.callPackage ./packages/gtk4-layer-shell.nix { };
jade = pkgs.callPackage ./packages/jade.nix { };
k0s-bin = pkgs.callPackage ./packages/k0s-bin.nix { };
libhpke = pkgs.callPackage ./packages/libhpke { };
lone = pkgs.callPackage ./packages/lone { };
Expand Down
19 changes: 19 additions & 0 deletions packages/jade.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ fetchFromGitHub
, buildGoModule
}: buildGoModule rec {
pname = "jade";
version = "2a11849";
src = fetchFromGitHub {
owner = "joker";
repo = pname;
rev = version;
hash = "sha256-spydTTkaIyQKfiGCP2lzUFN16DQElQnPGuJVzcvq5FY=";
};
vendorHash = "sha256-n4WeygbreZQwp6immjWzTT/IjAedZv27joSVU4wBPWI=";

meta = {
description = "Pug template engine for Go";
homepage = "https://github.com/Joker/jade";
mainProgram = "jade";
};
}

0 comments on commit 118ec2a

Please sign in to comment.