summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-08-03 22:40:57 +0200
committerAndreas Enge <andreas@enge.fr>2026-08-24 12:10:37 +0200
commit297f362890d6d9a55641ae17b71bfd3f5ea70d2d (patch)
tree796cead622ee11a5d5d6932851b71f052bd2ec07
parentde8694094cfaf259ffcb1c47cd09a5b2f99ebfbb (diff)
gnu: Remove twitchy.
* gnu/packages/video.scm (twitchy): Delete variable. * etc/teams/python/python-tier-5-manifest.scm: Drop it as well here. Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r--etc/teams/python/python-tier-5-manifest.scm1
-rw-r--r--gnu/packages/video.scm44
2 files changed, 0 insertions, 45 deletions
diff --git a/etc/teams/python/python-tier-5-manifest.scm b/etc/teams/python/python-tier-5-manifest.scm
index 131565f4ddb..1c6c7e3ec5d 100644
--- a/etc/teams/python/python-tier-5-manifest.scm
+++ b/etc/teams/python/python-tier-5-manifest.scm
@@ -56,7 +56,6 @@
56 "python-transient" 56 "python-transient"
57 "qmpbackup" 57 "qmpbackup"
58 "python-pynvim" 58 "python-pynvim"
59 "twitchy"
60 "qtfaststart" 59 "qtfaststart"
61 "openshot" 60 "openshot"
62 "ytcc" 61 "ytcc"
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 3b9726741e2..94825248770 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4220,50 +4220,6 @@ and custom quantization matrices.")
4220from sites like Twitch.tv and pipes them into a video player of choice.") 4220from sites like Twitch.tv and pipes them into a video player of choice.")
4221 (license license:bsd-2))) 4221 (license license:bsd-2)))
4222 4222
4223;; XXX: This package has not been updated in 6 years, is related to an web
4224;; application and is not tested, it's most likely not working, but I haven't
4225;; tested it. Consider removal.
4226(define-public twitchy
4227 (let ((commit "9beb36d80b16662414129693e74fa3a2fd97554e")) ; 3.4 has no tag
4228 (package
4229 (name "twitchy")
4230 (version (git-version "3.4" "1" commit))
4231 (source
4232 (origin
4233 (method git-fetch)
4234 (uri (git-reference
4235 (url "https://github.com/BasioMeusPuga/twitchy")
4236 (commit commit)))
4237 (file-name (git-file-name name version))
4238 (sha256
4239 (base32 "0di03h1j9ipp2bbnxxlxz07v87icyg2hmnsr4s7184z5ql8kpzr7"))))
4240 (build-system pyproject-build-system)
4241 (arguments
4242 (list
4243 #:tests? #f ; No tests.
4244 #:phases
4245 #~(modify-phases %standard-phases
4246 (add-after 'unpack 'patch-paths
4247 (lambda* (#:key inputs #:allow-other-keys)
4248 (substitute* "twitchy/twitchy_play.py"
4249 (("\"streamlink ")
4250 (format #f "\"~a "
4251 (search-input-file inputs "/bin/streamlink"))))))
4252 (add-before 'sanity-check 'check-setup
4253 (lambda _
4254 (setenv "HOME" (getcwd)))) ;Needs to write to ‘$HOME’.
4255 (add-after 'install 'install-rofi-plugin
4256 (lambda _
4257 (install-file "plugins/rofi-twitchy"
4258 (string-append #$output "/bin")))))))
4259 (native-inputs (list python-setuptools))
4260 (inputs (list python-requests streamlink))
4261 (home-page "https://github.com/BasioMeusPuga/twitchy")
4262 (synopsis "Command-line interface for Twitch.tv")
4263 (description
4264 "This package provides a command-line interface for Twitch.tv")
4265 (license license:gpl3+))))
4266
4267(define-public mlt 4223(define-public mlt
4268 (package 4224 (package
4269 (name "mlt") 4225 (name "mlt")