diff options
author | Feng Shu <[email protected]> | 2018-12-14 19:31:48 +0800 |
---|---|---|
committer | Arun Isaac <[email protected]> | 2018-12-15 11:52:21 +0530 |
commit | 0a2872eeaa139c467115f33c0ab2a6a1f6b78ccf (patch) | |
tree | cd5b961fb09c460530428e5b152bdf74952a1b6d /gnu/packages/emacs.scm | |
parent | 024e358cb964d785df79c6f743619aab9f823a23 (diff) |
gnu: emacs-exwm-x: Update to 1.9.0.
* gnu/packages/emacs.scm (emacs-exwm-x): Update to 1.9.0.
[source]: Use git-fetch.
Signed-off-by: Arun Isaac <[email protected]>
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 358f32cabd..4f2fc94d36 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -24,7 +24,7 @@ ;;; Copyright © 2017, 2018 Kyle Meyer <[email protected]> ;;; Copyright © 2017 Kei Kebreau <[email protected]> ;;; Copyright © 2017 George Clemmer <[email protected]> -;;; Copyright © 2017 Feng Shu <[email protected]> +;;; Copyright © 2017, 2018 Feng Shu <[email protected]> ;;; Copyright © 2017 Jan Nieuwenhuizen <[email protected]> ;;; Copyright © 2017, 2018 Oleg Pykhalov <[email protected]> ;;; Copyright © 2017 Mekeor Melire <[email protected]> @@ -6880,17 +6880,18 @@ other operations.") (define-public emacs-exwm-x (package (name "emacs-exwm-x") - (version "1.8.1") + (version "1.9.0") (synopsis "Derivative window manager based on EXWM") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/tumashu/exwm-x/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "0ali1100aacq4zbvcck80h51pvw204jlxhn4aikkqq4ngbx03kkr")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tumashu/exwm-x") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "03l3dl7s1qys1kkh40rm1sfx7axy1b8sf5f6nyksj9ps6d30p5i4")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-exwm" ,emacs-exwm) |