summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2020-05-13 05:31:06 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2020-05-13 05:31:06 +0300
commit6273a174c5c8441d41e41bc89c4c89b9bb3a86ca (patch)
treeffffe5f37581d59f6dfba16a09b1dac5f142dcb7
parentgnu: dotfiles: Update to 2.0.0-1.e22e16b. (diff)
downloadguix-wigust-6273a174c5c8441d41e41bc89c4c89b9bb3a86ca.tar.gz
gnu: Add emacs-ytel.
* guix/wigust/packages/emacs.scm (emacs-ytel): New variable.
-rw-r--r--guix/wigust/packages/emacs.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/guix/wigust/packages/emacs.scm b/guix/wigust/packages/emacs.scm
index 56a68bd..6982f0d 100644
--- a/guix/wigust/packages/emacs.scm
+++ b/guix/wigust/packages/emacs.scm
@@ -1433,3 +1433,27 @@ Apache configuration files.")
(description "Call @code{plain-org-wiki} to either open your Org files, or
create new ones.")
(license license:gpl3+))))
+
+(define-public emacs-ytel
+ (let ((commit "828323f9acb654d8f61ccbca510b471fb00879ee"))
+ (package
+ (name "emacs-ytel")
+ (version (git-version "0.1.0" "1" commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gRastello/ytel.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1zixqicpdywzdc2pkx9h08y3kphmn9zcx44bj2rqg3h8xsmjayk5"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/gRastello/ytel/")
+ (synopsis "Query YouTube via Invidious")
+ (description "This package provide a major mode to search YouTube videos via an elfeed-like
+buffer. Information about videos displayed in this buffer can be extracted
+and manipulated by user-defined functions to do various things such as:
+- playing them in some video player
+- download them")
+ (license license:gpl3+))))