pretender: 1.3.2 -> 1.4.1 (#538124)

This commit is contained in:
Fabian Affolter
2026-07-04 08:33:44 +00:00
committed by GitHub
+6 -6
View File
@@ -6,26 +6,26 @@
buildGoModule (finalAttrs: {
pname = "pretender";
version = "1.3.2";
version = "1.4.1";
src = fetchFromGitHub {
owner = "RedTeamPentesting";
repo = "pretender";
tag = "v${finalAttrs.version}";
hash = "sha256-c8uXN7UMj6UZPVt2aNSg6mRex8w+u7J5I7TAB7MzEWg=";
hash = "sha256-NwGjW0WvMuoG4NxBL3ygGbZF5b8dLXJPbYMadLodR8s=";
};
vendorHash = "sha256-UzKprzkxqG7FOPWcFQGuZtn+gHMeMy4jqCLUSdyO2l0=";
vendorHash = "sha256-pzyattaJQIzEgCheYBx6qJ95br6ApEk9RfBfAqrPkjI=";
# Tests require network access
doCheck = false;
meta = {
description = "Tool for handling machine-in-the-middle tasks";
mainProgram = "pretender";
homepage = "https://github.com/RedTeamPentesting/pretender";
changelog = "https://github.com/RedTeamPentesting/pretender/releases/tag/v${finalAttrs.version}";
license = with lib.licenses; [ mit ];
changelog = "https://github.com/RedTeamPentesting/pretender/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "pretender";
};
})