Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
630 B
Nix
Raw Permalink Normal View History

2021-01-10 17:30:15 +01:00
{
buildGoModule,
fetchFromGitHub,
lib,
2021-01-10 17:30:15 +01:00
}:
buildGoModule rec {
pname = "crlfuzz";
2021-04-04 17:49:57 +00:00
version = "1.4.1";
2021-01-10 17:30:15 +01:00
src = fetchFromGitHub {
owner = "dwisiswant0";
2025-05-25 02:53:02 +02:00
repo = "crlfuzz";
rev = "v${version}";
2021-04-04 17:49:57 +00:00
sha256 = "sha256-rqhdxOQmZCRtq+IZygKLleb5GoKP2akyEc3rbGcnZmw=";
2021-01-10 17:30:15 +01:00
};
vendorHash = "sha256-yLtISEJWIKqCuZtQxReu/Vykw5etqgLpuXqOdtwBkqU=";
2021-01-10 17:30:15 +01:00
doCheck = true;
2021-01-15 16:19:50 +07:00
meta = with lib; {
2021-01-10 17:30:15 +01:00
description = "Tool to scan for CRLF vulnerability";
mainProgram = "crlfuzz";
2021-01-10 17:30:15 +01:00
homepage = "https://github.com/dwisiswant0/crlfuzz";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}