about summary refs log tree commit diff
diff options
context:
space:
mode:
authorkirillrdy <kirillrdy@gmail.com>2024-02-13 08:20:06 +1100
committerGitHub <noreply@github.com>2024-02-13 08:20:06 +1100
commit25b2115e69c788699e87c50563c29197a0101609 (patch)
tree87f9c7c94e365ea5c688141d5f2e33bd14608bd1
parent415b9285cadd5b9ccd0122788aee043739025c71 (diff)
parent1fbd85e8889f488dca1065112420449e7ef45784 (diff)
Merge pull request #288349 from 3JlOy-PYCCKUi/wireproxy
wireproxy: 1.0.6 -> 1.0.7
-rw-r--r--pkgs/tools/networking/wireproxy/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/networking/wireproxy/default.nix b/pkgs/tools/networking/wireproxy/default.nix
index 7a12e477c0505..5d41f67250b13 100644
--- a/pkgs/tools/networking/wireproxy/default.nix
+++ b/pkgs/tools/networking/wireproxy/default.nix
@@ -1,19 +1,19 @@
 { lib
-, buildGo120Module
+, buildGoModule
 , fetchFromGitHub
 , testers
 , wireproxy
 }:
 
-buildGo120Module rec {
+buildGoModule rec {
   pname = "wireproxy";
-  version = "1.0.6";
+  version = "1.0.7";
 
   src = fetchFromGitHub {
     owner = "pufferffish";
     repo = "wireproxy";
     rev = "v${version}";
-    hash = "sha256-Sy8jApnU3dpsXi5vWyEY6D250xpG73aByNZ/pSg90l0=";
+    hash = "sha256-lMTlocKtOg82dH8XU+bIgPhico3mueLAuTspAY88GFI=";
   };
 
   ldflags = [
@@ -22,7 +22,7 @@ buildGo120Module rec {
     "-X main.version=v${version}"
   ];
 
-  vendorHash = "sha256-LBLEb2oVi5ILNtoOtmJZ7NC7hMvLZcexYAxwmb4iUBo=";
+  vendorHash = "sha256-V9W7Z8vgPdudNivfmGzJe1f6ebrZEqlG4AdIf2NNGrY=";
 
   passthru.tests.version = testers.testVersion {
     package = wireproxy;