diff options
Diffstat (limited to '')
-rw-r--r-- | pkgs/by-name/yt/yt/package.nix | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/by-name/yt/yt/package.nix b/pkgs/by-name/yt/yt/package.nix new file mode 100644 index 00000000..84eda119 --- /dev/null +++ b/pkgs/by-name/yt/yt/package.nix @@ -0,0 +1,44 @@ +{ + lib, + makeWrapper, + rustPlatform, + # dependencies + ytcc, + yt-dlp, + mpv, +}: { + yt = import ./yt.nix { + inherit + lib + makeWrapper + rustPlatform + # dependencies + + ytcc + yt-dlp + mpv + ; + }; + yts = import ./yts.nix { + inherit + lib + makeWrapper + rustPlatform + # dependencies + + ytcc + ; + }; + ytc = import ./ytc.nix { + inherit + lib + makeWrapper + rustPlatform + # dependencies + + ytcc + yt-dlp + mpv + ; + }; +} |