summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-07-10 13:38:05 +0300
committerThanos Apollo <[email protected]>2024-07-10 13:38:05 +0300
commita5633f9014f5707ff3bce50c782ac0f7d638e0ec (patch)
tree32c095d870963e9e0e6eea9a2c3bf7f6a237ca82 /guix
parent00e762904eedd4603d67be5f1c86e7e7f1d384c2 (diff)
guix: packages: Remove emacs-gnosis emacs-yeetube, add pcmpl-tailsca
Diffstat (limited to 'guix')
-rw-r--r--guix/packages/emacs.scm93
1 files changed, 23 insertions, 70 deletions
diff --git a/guix/packages/emacs.scm b/guix/packages/emacs.scm
index 70d9f21..47ac9e2 100644
--- a/guix/packages/emacs.scm
+++ b/guix/packages/emacs.scm
@@ -17,81 +17,13 @@
#:use-module (guix build-system trivial)
#:use-module (gnu packages)
#:use-module (gnu packages emacs-xyz)
+ #:use-module (gnu packages emacs)
+ #:use-module (gnu packages databases)
#:use-module (gnu packages video)
#:use-module (gnu packages tor)
#:use-module (ice-9 match))
-(define-public emacs-gnosis
- (let ((commit "6df4a3d342bee27ef6891dc4930dd3ff17c52c31"))
- (package
- (name "emacs-gnosis")
- (version "0.3.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://git.thanosapollo.org/gnosis")
- (commit commit)))
- (sha256
- (base32
- "18d59gw9k1aj7ki2555vb4mdbrpsz9ib5lkcshf6k0p0qxkzqcxz"))
- (file-name (git-file-name name version))))
- (build-system emacs-build-system)
- (propagated-inputs
- (list emacs-compat
- emacs-emacsql))
- (home-page "https://thanosapollo.org/projects/gnosis")
- (synopsis "Spaced Repetition System for GNU Emacs")
- (description "Gnosis is a spaced repetition system for note-taking and self-testing where notes are formatted as Question/Answer/Explanation. Notes are reviewed at spaced intervals based on the success or failure in recalling the answer to each question.")
- (license license:gpl3+))))
-
-
-(define-public emacs-yeetube
- (let ((commit "c9721a295f4fd30a44e94b3424151fa8a14d22ae")) ;version bump
- (package
- (name "emacs-yeetube")
- (version "2.1.6")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://git.thanosapollo.org/yeetube")
- (commit commit)))
- (sha256
- (base32
- "0lrcs0n30h800sm6py4av44a3fcfgasmj223mnl76q34syyrgz6k"))
- (file-name (git-file-name name version))))
- (build-system emacs-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'locate-binaries
- (lambda* (#:key inputs #:allow-other-keys)
- (substitute* (find-files "." "\\.el$")
- (("\\(executable-find \"mpv\"\\)")
- (format #f "~s"
- (search-input-file inputs "/bin/mpv")))
- (("\\(executable-find \"torsocks\"\\)")
- (format #f "~s"
- (search-input-file inputs "/bin/torsocks")))
- (("\\(executable-find \"yt-dlp\"\\)")
- (format #f "~s"
- (search-input-file inputs "/bin/yt-dlp")))))))))
- (inputs (list mpv torsocks yt-dlp))
- (propagated-inputs (list emacs-compat))
- (home-page "https://thanosapollo.org/projects/yeetube/")
- (synopsis "Youtube and Invidious front-end for Emacs")
- (description
- "This package offers an Emacs interface that allows you to search YouTube
-or an Invidious instance for a specific query. The search results are shown
-as links in an Org mode buffer. The videos can be opened to a user-defined
-video player (by default @command{mpv}) or downloaded using @command{yt-dlp}.
-This package also includes a @code{yt-dlp} front-end.")
- (license license:gpl3+))))
-
-
(define-public emacs-eshell-git-prompt
(let ((commit "dfcf9cd93add6763e2c46603b0323274d4c22906"))
(package
@@ -113,3 +45,24 @@ This package also includes a @code{yt-dlp} front-end.")
(synopsis "Themes for Emacs Shell (Eshell) prompt.")
(description "This package provides a variety of themes for Emacs Shell (Eshell) prompt.")
(license license:gpl3+))))
+
+(define-public emacs-pcmpl-tailscale
+ (let ((commit "acd6bce54af506b0450cf6aa1068f63d4e25c8ce"))
+ (package
+ (name "emacs-pcmpl-tailscale")
+ (version "0.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.thanosapollo.org/pcmpl-tailscale")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0lk808ahy8ckg2fr2pqk3p5if81nqrwsajrgqafv9hgn8w4l1x0p"))))
+ (build-system emacs-build-system)
+ (home-page "https://git.thanosapollo.org/pcmpl-tailscale")
+ (synopsis "Enhanced shell completions for tailscale")
+ (description "This package provides enhanced completions for the
+tailscale command and it's subcommands.")
+ (license license:gpl3+))))