summary refs log tree commit diff
path: root/pkgs/applications/networking/go-graft/default.nix
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-08-10 17:33:29 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-08-10 17:33:29 +0000
commitd90b45de3f00211783bf574987ce0d4e071f1fc0 (patch)
treef401ad90c908659c4945855c06dfcbfb46aa4965 /pkgs/applications/networking/go-graft/default.nix
parent0734dc5da20f9eea77c8271fbb94653402e1dd29 (diff)
go-graft: 0.2.6 -> 0.2.8
Diffstat (limited to 'pkgs/applications/networking/go-graft/default.nix')
-rw-r--r--pkgs/applications/networking/go-graft/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/go-graft/default.nix b/pkgs/applications/networking/go-graft/default.nix
index f919ff757fc9c..7e9e2c3933584 100644
--- a/pkgs/applications/networking/go-graft/default.nix
+++ b/pkgs/applications/networking/go-graft/default.nix
@@ -2,19 +2,19 @@
 
 buildGoModule rec {
   pname = "go-graft";
-  version = "0.2.6";
+  version = "0.2.8";
 
   src = fetchFromGitHub {
     owner = "mzz2017";
     repo = "gg";
     rev = "v${version}";
-    sha256 = "sha256-nuRkQEqytMPxd2Wh5XeUwk4YzIxnnNEiVTxFY4GlD1E=";
+    sha256 = "sha256-bihQo75HwottWXIGGaTG4mN+wg0iWKun61dvCYlAmeQ=";
   };
 
   CGO_ENABLED = 0;
 
   ldflags = [ "-X github.com/mzz2017/gg/cmd.Version=${version}" "-s" "-w" "-buildid=" ];
-  vendorSha256 = "sha256-/ckudHo/ttNct+yrQYQEaC6hX+p+Q6M1I/cjJCgjYLk=";
+  vendorSha256 = "sha256-26tk6pv3yCVwczuymD7r54C7BKcaVlOseI8TXj8IyOM=";
   subPackages = [ "." ];
 
   meta = with lib; {