aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/gopher
diff options
context:
space:
mode:
authorMichael Reilly <OmnipotentEntity@gmail.com>2020-03-31 21:11:51 -0400
committerJörg Thalheim <joerg@thalheim.io>2020-04-10 17:54:53 +0100
commit84cf00f98031e93f389f1eb93c4a7374a33cc0a9 (patch)
tree203c51a8740cb4893b8cfc4426d4cd49a97430e0 /pkgs/applications/networking/gopher
parentbf5eb87033cc6a5de5cc48da544c17a4dedc790b (diff)
treewide: Per RFC45, remove all unquoted URLs
Diffstat (limited to 'pkgs/applications/networking/gopher')
-rw-r--r--pkgs/applications/networking/gopher/gopher/default.nix2
-rw-r--r--pkgs/applications/networking/gopher/gopherclient/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/gopher/gopher/default.nix b/pkgs/applications/networking/gopher/gopher/default.nix
index f90e35ca7e2e..4e5716386442 100644
--- a/pkgs/applications/networking/gopher/gopher/default.nix
+++ b/pkgs/applications/networking/gopher/gopher/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
preConfigure = "export LIBS=-lncurses";
meta = with stdenv.lib; {
- homepage = http://gopher.quux.org:70/devel/gopher;
+ homepage = "http://gopher.quux.org:70/devel/gopher";
description = "A ncurses gopher client";
platforms = platforms.linux; # clang doesn't like local regex.h
license = licenses.gpl2;
diff --git a/pkgs/applications/networking/gopher/gopherclient/default.nix b/pkgs/applications/networking/gopher/gopherclient/default.nix
index 45d9235afc98..40e9401a40d2 100644
--- a/pkgs/applications/networking/gopher/gopherclient/default.nix
+++ b/pkgs/applications/networking/gopher/gopherclient/default.nix
@@ -35,7 +35,7 @@ buildGoPackage rec {
'';
meta = with stdenv.lib; {
- homepage = https://github.com/prologic/gopherclient;
+ homepage = "https://github.com/prologic/gopherclient";
description = "Gopher Qt GUI client";
license = licenses.mit;
maintainers = with maintainers; [ orivej ];