diff options
| -rw-r--r-- | guix/wigust/packages/emacs.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/guix/wigust/packages/emacs.scm b/guix/wigust/packages/emacs.scm index 13e84d4..72af286 100644 --- a/guix/wigust/packages/emacs.scm +++ b/guix/wigust/packages/emacs.scm @@ -1516,3 +1516,27 @@ that Emacs does not fully understand syntactically.") with Git-based projects.") (home-page "https://github.com/kitnil/emacs-wi-utils") (license license:gpl3+))) + +(define-public emacs-rainbow-fart + (let ((commit "05ff75fd3c4e639c027dd8e318b6b913e63fdbab") + (revision "1")) + (package + (name "emacs-rainbow-fart") + (version (git-version "0.1" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stardiviner/emacs-rainbow-fart.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0jkbmlrlgxaia6d7g825vcsyb0l7layalri453yvwxsfzh31qihx")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-flycheck" ,emacs-flycheck))) + (home-page "https://github.com/stardiviner/emacs-rainbow-fart/") + (synopsis "Checks the keywords of code to play suitable sounds") + (description "Emacs extension that keeps giving you compliment while you +are coding, it will checks the keywords of code to play suitable sounds.") + (license license:gpl3+)))) |
