about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/comments/default.nix
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2024-01-28 18:20:47 +0100
committerSoispha <soispha@vhack.eu>2024-01-28 18:20:47 +0100
commit736d4483985376aac995a5526c6a7f47edea0d2b (patch)
tree4cded31bf238042cd0e1777ef9afd50641857136 /sys/nixpkgs/pkgs/comments/default.nix
parentbuild(treewide): Update (diff)
downloadnixos-config-736d4483985376aac995a5526c6a7f47edea0d2b.zip
feat(sys/nixpkgs/pkgs/comments): Init
This rewrite of the `comments` script even provides nested comments
Diffstat (limited to 'sys/nixpkgs/pkgs/comments/default.nix')
-rw-r--r--sys/nixpkgs/pkgs/comments/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/nixpkgs/pkgs/comments/default.nix b/sys/nixpkgs/pkgs/comments/default.nix
new file mode 100644
index 00000000..c1f5459c
--- /dev/null
+++ b/sys/nixpkgs/pkgs/comments/default.nix
@@ -0,0 +1,18 @@
+[
+  (
+    final: prev: {
+      yt = import ./comments.nix {
+        inherit
+          (prev)
+          lib
+          makeWrapper
+          rustPlatform
+          # dependencies
+
+          less
+          fmt
+          ;
+      };
+    }
+  )
+]