gnu: emacs-ewmctrl: Update to 1.0.0.

* gnu/packages/emacs-xyz.scm (emacs-ewmctrl): Update to 1.0.0.

The previous commit was exactly matching "1.0.0" tag, so the hash did not change.
This commit is contained in:
Nicolas Goaziou 2021-05-29 15:30:05 +02:00
parent 838835dd86
commit e1e7cb650d
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -16724,39 +16724,38 @@ (define-public emacs-helm-bibtex
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-ewmctrl (define-public emacs-ewmctrl
(let ((commit "3d0217c4d6cdb5c308b6cb4293574f470d4faacf")) (package
(package (name "emacs-ewmctrl")
(name "emacs-ewmctrl") (version "1.0.0")
(version (git-version "0.0.1" "1" commit)) (source
(source (origin
(origin (method git-fetch)
(method git-fetch) (uri (git-reference
(uri (git-reference (url "https://github.com/flexibeast/ewmctrl")
(url "https://github.com/flexibeast/ewmctrl") (commit (string-append "v" version))))
(commit commit))) (file-name (git-file-name name version))
(file-name (git-file-name name version)) (sha256
(sha256 (base32
(base32 "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi"))))
"0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi")))) (build-system emacs-build-system)
(build-system emacs-build-system) (arguments
(arguments '(#:phases
'(#:phases (modify-phases %standard-phases
(modify-phases %standard-phases (add-after 'unpack 'patch-ewmctrl
(add-after 'unpack 'patch-ewmctrl ;; This build phase makes sure ewmctrl looks
;; This build phase makes sure ewmctrl looks ;; for wmctrl in the right place.
;; for wmctrl in the right place. (lambda _
(lambda _ (let ((file "ewmctrl.el"))
(let ((file "ewmctrl.el")) (chmod file #o644)
(chmod file #o644) (emacs-substitute-sexps file
(emacs-substitute-sexps file ("(defcustom ewmctrl-wmctrl-path" (which "wmctrl")))))))))
("(defcustom ewmctrl-wmctrl-path" (which "wmctrl"))))))))) (inputs
(inputs `(("wmctrl" ,wmctrl)))
`(("wmctrl" ,wmctrl))) (home-page "https://github.com/flexibeast/ewmctrl")
(home-page "https://github.com/flexibeast/ewmctrl") (synopsis "Emacs interface to @code{wmctrl}")
(synopsis "Emacs interface to @code{wmctrl}") (description "@code{ewmctrl} provides an Emacs interface to
(description "@code{ewmctrl} provides an Emacs interface to
@code{wmctrl} command-line window-management program.") @code{wmctrl} command-line window-management program.")
(license license:gpl3+)))) (license license:gpl3+)))
(define-public emacs-erc-image (define-public emacs-erc-image
(let ((commit "82fb3871f02e24b1e880770b9a3d187aab43d0f0") (let ((commit "82fb3871f02e24b1e880770b9a3d187aab43d0f0")