diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-04-18 15:16:25 +0200 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-19 20:12:26 -0400 |
commit | 9cc7ff179dff839791bbec210f48cf49565593f4 (patch) | |
tree | 8cc4218c74ccf6312e3f1e7c29ad863225a4279d | |
parent | ae1f9b9c920598056ebba0b33a2f63de9ff4cb25 (diff) | |
download | guix-9cc7ff179dff839791bbec210f48cf49565593f4.tar guix-9cc7ff179dff839791bbec210f48cf49565593f4.tar.gz |
gnu: emacs-osm: Do not mix home-page and origin.
* gnu/packages/emacs-xyz.scm (emacs-osm)[source]<origin>: Do not use home-page
value as origin.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a18872ee11..81082ec31d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -36135,11 +36135,10 @@ hacker.") (package (name "emacs-osm") (version "0.11") - (home-page "https://github.com/minad/osm") (source (origin (method git-fetch) (uri (git-reference - (url home-page) + (url "https://github.com/minad/osm") (commit version))) (file-name (git-file-name name version)) (sha256 @@ -36170,6 +36169,7 @@ hacker.") (inputs (list curl)) (native-inputs (list texinfo)) (propagated-inputs (list emacs-compat)) + (home-page "https://github.com/minad/osm") (synopsis "OpenStreetMap viewer for Emacs") (description "This package provides an OpenStreetMap viewer for Emacs, featuring |