httptap: 0.0.8 -> 0.1.1

Diff: https://github.com/monasticacademy/httptap/compare/refs/tags/v0.0.8...refs/tags/v0.1.1

emaryn 52a2b459 a8ada7ce

+7 -20
+7 -20
pkgs/by-name/ht/httptap/package.nix
··· 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5 - fetchpatch, 6 }: 7 8 - buildGoModule rec { 9 pname = "httptap"; 10 - version = "0.0.8"; 11 12 src = fetchFromGitHub { 13 owner = "monasticacademy"; 14 repo = "httptap"; 15 - tag = "v${version}"; 16 - hash = "sha256-1BtV5ao5dAKSINdUdJD/wxTMFXXiP8Vy1A7gQfVIsUQ="; 17 }; 18 19 - patches = [ 20 - # this patch updates go.mod to include missing dependencies 21 - # https://github.com/monasticacademy/httptap/pull/13 22 - (fetchpatch { 23 - name = "update-go-mod"; 24 - url = "https://github.com/monasticacademy/httptap/commit/3b520725c784d6435be6a51c58ae847bae729962.patch"; 25 - hash = "sha256-0dPq0Ldu1m8YZKctFtoUcbQdmx6sqjA8EVhTeMwNWx8="; 26 - }) 27 - ]; 28 - 29 - vendorHash = "sha256-+TtHw2KdeNHCgnMnkxJJ9shqsrlbeTzYwbPH0dJmCjM="; 30 31 env.CGO_ENABLED = 0; 32 33 - subPackages = [ 34 - "." 35 - ]; 36 37 ldflags = [ 38 "-s" ··· 46 maintainers = with lib.maintainers; [ jpetrucciani ]; 47 mainProgram = "httptap"; 48 }; 49 - }
··· 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5 }: 6 7 + buildGoModule (finalAttrs: { 8 pname = "httptap"; 9 + version = "0.1.1"; 10 11 src = fetchFromGitHub { 12 owner = "monasticacademy"; 13 repo = "httptap"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-Cn5u6q0r06SJp4uhF7j5K6yNZv8Q3WNxlDd5Vxmshhw="; 16 }; 17 18 + vendorHash = "sha256-yTtUt+kfDwN6W4caHCAYFjpYzhaqZUbLe+Nz7JKAXu8="; 19 20 env.CGO_ENABLED = 0; 21 22 + subPackages = [ "." ]; 23 24 ldflags = [ 25 "-s" ··· 33 maintainers = with lib.maintainers; [ jpetrucciani ]; 34 mainProgram = "httptap"; 35 }; 36 + })