summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-07-18 15:28:56 +0300
committerThanos Apollo <[email protected]>2024-07-18 15:28:56 +0300
commit41a10c7abbd6587927181fd8a878faaa4dbc752f (patch)
tree4ec55e1b34d96cd1b722c5cd09c12abe7a77a63e
parent68305a1881a81de4d070fb5a72470d781c01001b (diff)
packages: emacs: Add emacs-gnosis.
* New variable: emacs-gnosis.
-rw-r--r--hecate/packages/emacs.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/hecate/packages/emacs.scm b/hecate/packages/emacs.scm
index 36f583d..89a5746 100644
--- a/hecate/packages/emacs.scm
+++ b/hecate/packages/emacs.scm
@@ -89,3 +89,30 @@ tailscale command and it's subcommands.")
"0x0 is an pastebin integration tool. Functionality includes uploading
the current buffer, a file on your disk, or a string from the kill ring.")
(license license:gpl3+))))
+
+(define-public emacs-gnosis
+ (let ((commit "4cd3ce6993a9b97b698537c428addf7387b13a3f")
+ (revision "0"))
+ (package
+ (name "emacs-gnosis")
+ (version (git-version "0.3.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.thanosapollo.org/gnosis")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0klggh9vx994i962m5a86ggxcr87vh5pwvm0qhdapwsag2ma08pk"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-compat emacs-emacsql))
+ (home-page "https://github.com/emacsorphanage/ac-ispell")
+ (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+))))
+