about summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-01-27 12:09:20 -0500
committerGitHub <noreply@github.com>2023-01-27 12:09:20 -0500
commitd988568e350c3648805c0d4d1a9dcf7df0322bbf (patch)
treeaa6ffe785afdeb24607b1de9553889c36446cbf3
parent14b6cf7602c341e525a8fe17ac2349769376515e (diff)
parentb02a027cb29c33ea704dd53f7d328cb6729d78bd (diff)
Merge pull request #212966 from aaronjheng/httplab
httplab: tweak transfered upstream repo
-rw-r--r--pkgs/tools/networking/httplab/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/httplab/default.nix b/pkgs/tools/networking/httplab/default.nix
index 4d4a798833eaa..2fe0f15b38525 100644
--- a/pkgs/tools/networking/httplab/default.nix
+++ b/pkgs/tools/networking/httplab/default.nix
@@ -5,7 +5,7 @@ buildGoModule rec {
   version = "0.4.0";
 
   src = fetchFromGitHub {
-    owner = "gchaincl";
+    owner = "qustavo";
     repo = "httplab";
     rev = "v${version}";
     hash = "sha256-+qcECfQo9Wa4JQ09ujhKjQndmcFn03hTfII636+1ghA=";
@@ -24,7 +24,7 @@ buildGoModule rec {
   ldflags = [ "-s" "-w" ];
 
   meta = with lib; {
-    homepage = "https://github.com/gchaincl/httplab";
+    homepage = "https://github.com/qustavo/httplab";
     description = "Interactive WebServer";
     license = licenses.mit;
     maintainers = with maintainers; [ pradeepchhetri ];