gnu: emacs-sr-speedbar: Update to 20161025.
* gnu/packages/emacs.scm (emacs-sr-speedbar): Update to 20161025. [version]: Use git-version. [source]: Download sources via git-fetch and use git-file-name. Signed-off-by: Kei Kebreau <kkebreau@posteo.net>
This commit is contained in:
parent
6342ebd5e7
commit
33ca12f3e4
|
@ -31,7 +31,7 @@
|
||||||
;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
|
;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
|
||||||
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org>
|
;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org>
|
||||||
;;; Copyright © 2017 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2017, 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2331,27 +2331,29 @@ truncation.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public emacs-sr-speedbar
|
(define-public emacs-sr-speedbar
|
||||||
(package
|
(let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
|
||||||
(name "emacs-sr-speedbar")
|
(revision "0"))
|
||||||
(version "20140914.2339")
|
(package
|
||||||
(source
|
(name "emacs-sr-speedbar")
|
||||||
(origin
|
(version (git-version "20161025" revision commit))
|
||||||
(method url-fetch)
|
(source
|
||||||
(uri (string-append
|
(origin
|
||||||
"https://github.com/emacsorphanage/sr-speedbar/archive/"
|
(method git-fetch)
|
||||||
version ".tar.gz"))
|
(uri (git-reference
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(url "https://github.com/emacsorphanage/sr-speedbar.git")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"15xwwc6kgvmk4wdhx1j8w6m6ivxvc94028ppgdpa2m51a8c9vjm9"))))
|
(sha256
|
||||||
(build-system emacs-build-system)
|
(base32
|
||||||
(home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
|
"0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
|
||||||
(synopsis "Same frame Emacs @code{speedbar}")
|
(build-system emacs-build-system)
|
||||||
(description
|
(home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
|
||||||
"This Emacs package allows you to show @code{M-x speedbar} in the
|
(synopsis "Same frame Emacs @code{speedbar}")
|
||||||
|
(description
|
||||||
|
"This Emacs package allows you to show @code{M-x speedbar} in the
|
||||||
same frame (in an extra window). You can customize the initial width of
|
same frame (in an extra window). You can customize the initial width of
|
||||||
the speedbar window.")
|
the speedbar window.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-shell-switcher
|
(define-public emacs-shell-switcher
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue