diff options
author | Sisiutl <sisiutl@egregore.fun> | 2024-08-21 17:54:49 +0200 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-09-12 12:47:03 +0800 |
commit | 0b17ad1e8b9056a0af621ebb8c5faf4b029ad34d (patch) | |
tree | cc916c1ad7619541e4b5855a469d96fbcfe27a90 /gnu/packages | |
parent | 607833ddedd195d13428247f82ec90115aff52fe (diff) | |
download | guix-0b17ad1e8b9056a0af621ebb8c5faf4b029ad34d.tar guix-0b17ad1e8b9056a0af621ebb8c5faf4b029ad34d.tar.gz |
gnu: Add ytcc.
* gnu/packages/video.scm (ytcc): New variable.
Change-Id: Iaf4fd7343b02c52a358093ae81aaafbae1eea9bf
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/video.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index ae6d684ada..40915117d4 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3346,6 +3346,32 @@ Both command-line and GTK2 interface are available.") (home-page "https://github.com/trizen/youtube-viewer") (license license:perl-license))) +(define-public ytcc + (package + (name "ytcc") + (version "2.6.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "ytcc" version)) + (sha256 + (base32 "0laaj7m9mkn421hsljaqyhj2az641lg4y7ym6l8jl1xgs1vl9b4b")))) + (build-system pyproject-build-system) + (inputs (list python-click + python-wcwidth + python-websockets + python-urllib3-next + python-requests-next + python-pycryptodomex + python-mutagen + python-brotli + yt-dlp)) + (home-page "https://github.com/woefe/ytcc") + (synopsis "Command line tool to keep track of your favorite playlists") + (description "ytcc is a command line tool to keep track of your favorite +playlists.") + (license license:gpl3+))) + (define-public libbluray (package (name "libbluray") |