about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/yt/default.nix
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2024-01-20 12:03:46 +0100
committerSoispha <soispha@vhack.eu>2024-01-20 12:03:46 +0100
commit089c08af03849fb2883a17726462ca0d8ce8b51f (patch)
treed5d9285c6beab0babd16fe533b621ed56280bdd4 /sys/nixpkgs/pkgs/yt/default.nix
parentfeat(hm/conf/nvim/plgs/treesitter): Add custom parser for `yts` (diff)
downloadnixos-config-089c08af03849fb2883a17726462ca0d8ce8b51f.tar.gz
nixos-config-089c08af03849fb2883a17726462ca0d8ce8b51f.zip
feat(sys/nixpkgs/pkgs/yt): Merge ytc and the rewritten ytc
Diffstat (limited to '')
-rw-r--r--sys/nixpkgs/pkgs/yt/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/sys/nixpkgs/pkgs/yt/default.nix b/sys/nixpkgs/pkgs/yt/default.nix
new file mode 100644
index 00000000..63bce5c3
--- /dev/null
+++ b/sys/nixpkgs/pkgs/yt/default.nix
@@ -0,0 +1,51 @@
+[
+  (
+    final: prev: {
+      yt = import ./yt.nix {
+        inherit
+          (prev)
+          lib
+          makeWrapper
+          rustPlatform
+          # dependencies
+
+          ytcc
+          yt-dlp
+          mpv
+          ;
+      };
+    }
+  )
+  (
+    final: prev: {
+      yts = import ./yts.nix {
+        inherit
+          (prev)
+          lib
+          makeWrapper
+          rustPlatform
+          # dependencies
+
+          ytcc
+          ;
+      };
+    }
+  )
+  (
+    final: prev: {
+      ytc = import ./ytc.nix {
+        inherit
+          (prev)
+          lib
+          makeWrapper
+          rustPlatform
+          # dependencies
+
+          ytcc
+          yt-dlp
+          mpv
+          ;
+      };
+    }
+  )
+]