diff options
author | Alex Griffin <a@ajgrf.com> | 2019-06-09 09:00:48 -0500 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2019-06-13 23:40:05 +0300 |
commit | fdcd50b93bf29efcd757f3100391f5da45c143b6 (patch) | |
tree | d5f9ed4a197d4a1c83aecbdd1593db93ebf86c86 /gnu | |
parent | 9989e06fda9f60dc08272435629ab9f065bb0da5 (diff) | |
download | guix-fdcd50b93bf29efcd757f3100391f5da45c143b6.tar.gz guix-fdcd50b93bf29efcd757f3100391f5da45c143b6.zip |
gnu: Add emacs-restart-emacs.
* gnu/packages/emacs-xyz.scm (emacs-restart-emacs): New variable.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ef29177c8b..fe0613cd33 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -10689,6 +10689,28 @@ macro takes a first argument (whose value must be an alist) and a body.") your Emacs.") (license license:gpl2+)))) +(define-public emacs-restart-emacs + (let ((commit "9aa90d3df9e08bc420e1c9845ee3ff568e911bd9") + (revision "1")) + (package + (name "emacs-restart-emacs") + (version (git-version "0.1.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/iqbalansari/restart-emacs.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02x1a85k7r95z8091zgjiaj9nf0zvx1jy4xvl3hr12qbnrx1wfav")))) + (build-system emacs-build-system) + (home-page "https://github.com/iqbalansari/restart-emacs") + (synopsis "Restart Emacs from within Emacs") + (description "This package provides a simple command to restart Emacs from +within Emacs.") + (license license:gpl3+)))) + (define-public emacs-sourcemap (package (name "emacs-sourcemap") |