gnu: emacs-prop-menu: Use git-reference.

* gnu/packages/emacs-xyz.scm (emacs-prop-menu)[source]: Use git-reference
  instead of url-fetching from MELPA stable.
This commit is contained in:
Brett Gilio 2019-12-09 23:16:24 -06:00
parent 8b34ed3dd0
commit b42ae19f04
No known key found for this signature in database
GPG key ID: 672243C4A03F0EEE

View file

@ -10503,13 +10503,14 @@ (define-public emacs-prop-menu
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (string-append
"http://stable.melpa.org/packages/prop-menu-"
version ".el"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/david-christiansen/prop-menu-el.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
"18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"))))
(build-system emacs-build-system)
(home-page
"https://github.com/david-christiansen/prop-menu-el")