about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/development/tools/misc/hound/default.nix2
-rw-r--r--pkgs/servers/mattermost/matterircd.nix2
-rw-r--r--pkgs/servers/monitoring/prometheus/redis-exporter.nix2
-rw-r--r--pkgs/tools/backup/restic/rest-server.nix2
4 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/hound/default.nix b/pkgs/development/tools/misc/hound/default.nix
index 977606601e9a5..e9358ac2bcc1c 100644
--- a/pkgs/development/tools/misc/hound/default.nix
+++ b/pkgs/development/tools/misc/hound/default.nix
@@ -33,8 +33,8 @@ buildGoModule rec {
   passthru.tests = { inherit (nixosTests) hound; };
 
   meta = with lib; {
-    inherit (src.meta) homepage;
     description = "Lightning fast code searching made easy";
+    homepage = "https://github.com/hound-search/hound";
     license = licenses.mit;
     maintainers = with maintainers; [ grahamc SuperSandro2000 ];
     platforms = platforms.unix;
diff --git a/pkgs/servers/mattermost/matterircd.nix b/pkgs/servers/mattermost/matterircd.nix
index 63f32c1dcb3f1..6cd944470338a 100644
--- a/pkgs/servers/mattermost/matterircd.nix
+++ b/pkgs/servers/mattermost/matterircd.nix
@@ -16,8 +16,8 @@ buildGoModule rec {
   ldflags = [ "-s" "-w" ];
 
   meta = with lib; {
-    inherit (src.meta) homepage;
     description = "Minimal IRC server bridge to Mattermost";
+    homepage = "https://github.com/42wim/matterircd";
     license = licenses.mit;
     maintainers = with maintainers; [ ];
     platforms = platforms.unix;
diff --git a/pkgs/servers/monitoring/prometheus/redis-exporter.nix b/pkgs/servers/monitoring/prometheus/redis-exporter.nix
index 75cf7c5a53242..f0090b97032be 100644
--- a/pkgs/servers/monitoring/prometheus/redis-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/redis-exporter.nix
@@ -26,7 +26,7 @@ buildGoModule rec {
 
   meta = with lib; {
     description = "Prometheus exporter for Redis metrics";
-    inherit (src.meta) homepage;
+    homepage = "https://github.com/oliver006/redis_exporter";
     license = licenses.mit;
     maintainers = with maintainers; [ eskytthe srhb ma27 ];
     platforms = platforms.unix;
diff --git a/pkgs/tools/backup/restic/rest-server.nix b/pkgs/tools/backup/restic/rest-server.nix
index 0e9a72381ba6d..169b8d74eebed 100644
--- a/pkgs/tools/backup/restic/rest-server.nix
+++ b/pkgs/tools/backup/restic/rest-server.nix
@@ -23,8 +23,8 @@ buildGoModule rec {
   ];
 
   meta = with lib; {
-    inherit (src.meta) homepage;
     description = "A high performance HTTP server that implements restic's REST backend API";
+    homepage = "https://github.com/restic/rest-server";
     platforms = platforms.unix;
     license = licenses.bsd2;
     maintainers = with maintainers; [ dotlambda ];