summary refs log tree commit diff
path: root/pkgs/tools/networking/waitron
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-10-25 09:31:29 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-11-13 09:02:22 +1000
commit2f506048b13fe69c22cec5e7e5610eabfc537aa7 (patch)
tree8e4dd8d2973cddce98c55e119323e1da06481120 /pkgs/tools/networking/waitron
parent2ed9c40c2c0625d2d5caa1792601d8b69eaa84f4 (diff)
treewide: mark buildGoModule packages broken
Diffstat (limited to 'pkgs/tools/networking/waitron')
-rw-r--r--pkgs/tools/networking/waitron/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/networking/waitron/default.nix b/pkgs/tools/networking/waitron/default.nix
index 7ef984147a322..bc52bb33e370e 100644
--- a/pkgs/tools/networking/waitron/default.nix
+++ b/pkgs/tools/networking/waitron/default.nix
@@ -15,7 +15,7 @@ buildGoModule rec {
     sha256 = "sha256-ZkGhEOckIOYGb6Yjr4I4e9cjAHDfksRwHW+zgOMZ/FE=";
   };
 
-  vendorSha256 = "sha256-grQFLo0BIIa/kNKF4vPw/V1WN9sxOucz6+wET2PBU1I=";
+  vendorSha256 = null; #vendorSha256 = "";
 
   subPackages = [ "." ];
 
@@ -34,5 +34,6 @@ buildGoModule rec {
     license =  licenses.asl20;
     maintainers = with maintainers; [ guibert ];
     platforms = platforms.linux;
+    broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.go-modules --check
   };
 }