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 2 lib, 3 3 buildGoModule, 4 4 fetchFromGitHub, 5 - fetchpatch, 6 5 }: 7 6 8 - buildGoModule rec { 7 + buildGoModule (finalAttrs: { 9 8 pname = "httptap"; 10 - version = "0.0.8"; 9 + version = "0.1.1"; 11 10 12 11 src = fetchFromGitHub { 13 12 owner = "monasticacademy"; 14 13 repo = "httptap"; 15 - tag = "v${version}"; 16 - hash = "sha256-1BtV5ao5dAKSINdUdJD/wxTMFXXiP8Vy1A7gQfVIsUQ="; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-Cn5u6q0r06SJp4uhF7j5K6yNZv8Q3WNxlDd5Vxmshhw="; 17 16 }; 18 17 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="; 18 + vendorHash = "sha256-yTtUt+kfDwN6W4caHCAYFjpYzhaqZUbLe+Nz7JKAXu8="; 30 19 31 20 env.CGO_ENABLED = 0; 32 21 33 - subPackages = [ 34 - "." 35 - ]; 22 + subPackages = [ "." ]; 36 23 37 24 ldflags = [ 38 25 "-s" ··· 46 33 maintainers = with lib.maintainers; [ jpetrucciani ]; 47 34 mainProgram = "httptap"; 48 35 }; 49 - } 36 + })