diff options
author | Marius Bakke <marius@gnu.org> | 2022-11-20 15:05:51 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-20 15:15:33 +0100 |
commit | e994412c196c23bbe9f1281956a520241439292a (patch) | |
tree | bfa0eacfe79ae4b0ff62eb8aef76897936707e02 /gnu | |
parent | 20d5b8b4d5c657e23e5ab00138f1dc852bd5a5a0 (diff) | |
download | guix-e994412c196c23bbe9f1281956a520241439292a.tar.gz guix-e994412c196c23bbe9f1281956a520241439292a.zip |
gnu: inkbox: Update home-page and source URI.
* gnu/packages/ebook.scm (inkbox)[home-page]: Set to repository, as the
previous was NXDOMAIN.
[source](uri): Use HOME-PAGE.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ebook.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index df4064ae56..232249a76e 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -386,12 +386,13 @@ accessing and converting various ebook file formats.") (package (name "inkbox") (version "1.7") + (home-page "https://github.com/Kobo-InkBox/inkbox") (source (origin (method git-fetch) (uri (git-reference - (url "https://alpinekobox.ddns.net/InkBox/inkbox/") + (url home-page) (commit version))) (file-name (git-file-name name version)) (sha256 @@ -413,7 +414,6 @@ accessing and converting various ebook file formats.") (apply invoke (cons "qmake" make-flags))))))) (native-inputs (list qtbase-5)) - (home-page "https://alpinekobox.ddns.net/InkBox/inkbox/") (synopsis "EBook reader") (description "This package provides InkBox eBook reader.") (license license:gpl3))) |