diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-25 12:43:04 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-25 12:43:04 +0300 |
| commit | e1860a5bf83098977534c0eacf597b2adaa290ed (patch) | |
| tree | a7fd2a09e200f69d2745e630327409aa58db220b /local | |
| parent | local: Add emacs-guix-local-checkout. (diff) | |
| download | guix-local-e1860a5bf83098977534c0eacf597b2adaa290ed.tar.gz | |
local: Add emacs-terminal-here-checkout.
* local/packages/emacs.scm (emacs-terminal-here-checkout): New public
variable.
Diffstat (limited to 'local')
| -rw-r--r-- | local/packages/emacs.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/local/packages/emacs.scm b/local/packages/emacs.scm index 7ceb072..08fdc2f 100644 --- a/local/packages/emacs.scm +++ b/local/packages/emacs.scm @@ -10,6 +10,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages texinfo) #:use-module (gnu packages xdisorg) + #:use-module (wigust packages emacs) #:use-module (guix build-system emacs) #:use-module ((guix licenses) #:prefix license:)) @@ -102,3 +103,20 @@ capturing user input and paste it with @kbd{C-v} after exit.") ("autoconf" ,autoconf) ("automake" ,automake) ("texinfo" ,texinfo)))))) + +(define-public emacs-terminal-here-checkout + (let ((commit "d663f9e7663105cc6ee3065f4891f5548ef9029b")) + (package + (inherit emacs-terminal-here) + (name "emacs-terminal-here-checkout") + (version (git-version "1.0" "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "git://git.magnolia.local/emacs-terminal-here") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0gjh7gkxpcwdb8lvx7w40lxprhay4r1li48k84a4jwgpkwwx0651"))))))) |
