diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2020-07-05 17:11:05 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-07-05 17:11:05 +0300 |
| commit | 2a1a474438a32aa99f41885ded51cb5d10669657 (patch) | |
| tree | 7c41c0410c30d5285b9edb1d0a5823de296c79a2 | |
| parent | gnu: y2rss: Fix version. (diff) | |
| download | guix-wigust-2a1a474438a32aa99f41885ded51cb5d10669657.tar.gz | |
gnu: Add emacs-rainbow-fart.origin/emacs-rainbow-fartemacs-rainbow-fart
* guix/wigust/packages/emacs.scm (emacs-rainbow-fart): New variable.
| -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+)))) |
