gnu: emacs-org-noter: Use git-reference.

* gnu/packages/emacs-xyz.scm (emacs-org-noter)[source]: Use git-reference
  instead of url-fetching from MELPA stable.
This commit is contained in:
Brett Gilio 2019-12-09 23:01:27 -06:00
parent 1ea509fb00
commit 46e1095d89
No known key found for this signature in database
GPG key ID: 672243C4A03F0EEE

View file

@ -19197,15 +19197,15 @@ (define-public emacs-org-noter
(name "emacs-org-noter") (name "emacs-org-noter")
(version "1.3.0") (version "1.3.0")
(source (source
(origin
(method url-fetch)
(uri (string-append
"https://stable.melpa.org/packages/org-noter-"
version
".el"))
(sha256 (sha256
(base32 (base32
"1hczwva73gsyanl1ldhdvql01gy0hy2g861yzkaklyb763sx58x4")))) "1hczwva73gsyanl1ldhdvql01gy0hy2g861yzkaklyb763sx58x4"))))
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/weirdNox/org-noter.git")
(commit version)))
(file-name (git-file-name name version))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs `(("emacs-org" ,emacs-org))) (propagated-inputs `(("emacs-org" ,emacs-org)))
(home-page "https://github.com/weirdNox/org-noter") (home-page "https://github.com/weirdNox/org-noter")