diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-05-23 16:01:03 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-05-23 20:39:13 +0300 |
commit | 7e762ab09e5334140da4988e07ee9678ab3d661c (patch) | |
tree | 434c65e6f116aff42b2783b2f0ae10e232002764 /gnu/packages | |
parent | 0ad3cc75aebc4794b38cfa5ef1c8fb8061def1fb (diff) | |
download | guix-7e762ab09e5334140da4988e07ee9678ab3d661c.tar.gz guix-7e762ab09e5334140da4988e07ee9678ab3d661c.zip |
gnu: roxterm: Fix lint errors.
* gnu/packages/terminals.scm (roxterm)[source]: Add the file-name field.
Follow source url redirect.
[home-page]: Follow redirect.
Change-Id: Id68c87679a95656212c0c0edb916066e90a037d7
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/terminals.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index 1c1294f663..49f2bbb144 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -1754,8 +1754,9 @@ and the ability to read and write via stdin and stdout.") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/realh/roxterm.git") + (url "https://github.com/realh/roxterm") (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 "19y4lxwj18pr231597rnyyk6f5hwvsajjv7w21wb5c62jjjyfrws")))) @@ -1770,6 +1771,6 @@ and the ability to read and write via stdin and stdout.") (synopsis "ROXTerm terminal emulator") (description "This package provides a terminal emulator with hyperlink support. It's based on VTE and aimed at power users.") - (home-page "https://realh.github.io/roxterm/") + (home-page "https://realh.github.io/roxterm/en/index.html") ;; src/gresources.c is under LGPL 2.1+ (license (list license:gpl2+ license:lgpl2.1+)))) |