diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-01-15 21:12:06 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-01-16 23:37:43 +0100 |
commit | 0b35f11d7647747ad2372e153242807d921a7763 (patch) | |
tree | 047e260c495deb93c70957d9afc58febfbe2e929 /gnu | |
parent | ae21519f63a186a8c43aade39ecc6fd04ba75d86 (diff) | |
download | guix-0b35f11d7647747ad2372e153242807d921a7763.tar guix-0b35f11d7647747ad2372e153242807d921a7763.tar.gz |
gnu: Add emacs-git-timemachine.
* gnu/packages/emacs.scm (emacs-git-timemachine): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 50cea76855..4c2ab794b6 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1440,6 +1440,26 @@ Git, Mercurial, Subversion and Bazaar are supported, and many parts of the display and behaviour is easily customisable.") (license license:gpl3+))) +(define-public emacs-git-timemachine + (package + (name "emacs-git-timemachine") + (version "3.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/pidu/git-timemachine/" + "archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1l4g0r69wfrnjsywv03v4bpdd53byg6zdx6mzabfxyymss3kvisa")))) + (build-system emacs-build-system) + (home-page "https://github.com/pidu/git-timemachine") + (synopsis "Step through historic versions of Git-controlled files") + (description "This package enables you to step through historic versions +of files under Git version control from within Emacs.") + (license license:gpl3+))) + (define-public emacs-el-mock (package (name "emacs-el-mock") |