Skip to content

Commit

Permalink
Add pug
Browse files Browse the repository at this point in the history
  • Loading branch information
42LoCo42 committed Mar 27, 2024
1 parent b35c023 commit 1fbfc43
Show file tree
Hide file tree
Showing 4 changed files with 1,381 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 @@
- `my-lzbt`: Secure Boot for NixOS - pinned to v0.3.0 - https://github.com/nix-community/lanzaboote
- `my-ncmpcpp`: ncmpcpp except the media library always shows Albums - Songs - https://rybczak.net/ncmpcpp/
- `prettier-plugin-go-template`: Fixes prettier formatting for go templates - https://github.com/NiklasPor/prettier-plugin-go-template
- `pug`: Pug 3 CLI interface - https://github.com/tokilabs/pug3-cli
- `redis-json`: RedisJSON - a JSON data type for Redis - https://github.com/RedisJSON/RedisJSON
- `samloader`: Download Samsung firmware from official servers - https://github.com/samloader/samloader
- `wayland-shell`: Small-scale replacement of the GNOME Shell - https://github.com/nilsherzig/wayland-shell
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
msp-cgt = pkgs.callPackage ./packages/msp-cgt.nix { };
mspgcc-ti = pkgs.callPackage ./packages/mspgcc-ti.nix { };
prettier-plugin-go-template = pkgs.callPackage ./packages/prettier-plugin-go-template.nix { };
pug = pkgs.callPackage ./packages/pug { };
redis-json = pkgs.callPackage ./packages/redis-json { };
samloader = pkgs.callPackage ./packages/samloader.nix { };
wayland-shell = pkgs.callPackage ./packages/wayland-shell.nix { inherit gtk4-layer-shell; };
Expand Down
17 changes: 17 additions & 0 deletions packages/pug/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{ mkYarnPackage, fetchFromGitHub, ... }: mkYarnPackage rec {
pname = "pug";
version = "0e28930";
src = fetchFromGitHub {
owner = "tokilabs";
repo = pname;
rev = version;
hash = "sha256-7qvHsP4fyrkOSTzl9zx1s/idFGBew8E0jpsedLiatOs=";
};
yarnLock = ./yarn.lock;

meta = {
mainProgram = "pug3";
homepage = "https://github.com/tokilabs/pug3-cli";
description = "Pug 3 CLI interface";
};
}
Loading

0 comments on commit 1fbfc43

Please sign in to comment.