diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-06-06 16:46:57 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-06-06 18:37:36 +0300 |
| commit | ef7210067b66bd3e0f718b79e99a33a670ac90a9 (patch) | |
| tree | 4854d225613f6f4f6d907a7c9b1e1fb80f8c5480 | |
| parent | local: Add emacs-hydra-timestamp. (diff) | |
| download | guix-local-ef7210067b66bd3e0f718b79e99a33a670ac90a9.tar.gz | |
local: Add emacs-guix-misc.
* local/packages/emacs.scm (emacs-guix-misc): New variable.
| -rw-r--r-- | local/packages/emacs.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/local/packages/emacs.scm b/local/packages/emacs.scm index 9d23460..7b7a082 100644 --- a/local/packages/emacs.scm +++ b/local/packages/emacs.scm @@ -150,3 +150,34 @@ capturing user input and paste it with @kbd{C-v} after exit.") "This package provides an Emacs Hydra for inserting timestamps.") (home-page #f) (license license:gpl3+)))) + +(define-public emacs-guix-misc + (let ((commit "b3ec0a77ab2a5cb265892190ab8684a434958cf6")) + (package + (name "emacs-guix-misc") + (version (string-append "0.0.1" "-" (string-take commit 7))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "git://git.magnolia.local/emacs-guix-misc") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0xh98c4ijyhrnjc29wrhhilg2nam1qj667fi94c7msln6crifzgr")))) + (build-system emacs-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'chdir-elisp + ;; Elisp directory is not in root of the source. + (lambda _ + (chdir "lisp")))))) + (home-page "https://github.com/wigust/emacs-guix-misc") + (synopsis "Additional functions for Emacs Guix") + (description + "This package provides an additional functionality for Emacs Guix.") + (license license:gpl3+)))) + +;;; guix.scm ends here |
