lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

reaper-go: init at 0.2.3

Application security testing framework

https://github.com/ghostsecurity/reaper

+35
+35
pkgs/by-name/re/reaper-go/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + }: 6 + 7 + buildGoModule (finalAttrs: { 8 + pname = "reaper-go"; 9 + version = "0.2.3"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "ghostsecurity"; 13 + repo = "reaper"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-NXRqKO76RoxEvR7slMmUDdesRFMxDJpX/IGxoTDwJVU="; 16 + }; 17 + 18 + vendorHash = "sha256-PxZ+fx5wkYuggMfpTfkc8quSssCzXdIcwjdR4qhDbqE="; 19 + 20 + ldflags = [ 21 + "-s" 22 + "-w" 23 + "-X=github.com/ghostsecurity/reaper/version.Date=1970-01-01T00:00:00Z" 24 + "-X=github.com/ghostsecurity/reaper/version.Version=${finalAttrs.version}" 25 + ]; 26 + 27 + meta = { 28 + description = "Application security testing framework"; 29 + homepage = "https://github.com/ghostsecurity/reaper"; 30 + changelog = "https://github.com/ghostsecurity/reaper/releases/tag/${finalAttrs.src.tag}"; 31 + license = lib.licenses.asl20; 32 + maintainers = with lib.maintainers; [ fab ]; 33 + mainProgram = "reaper"; 34 + }; 35 + })