at 24.11-pre 28 lines 621 B view raw
1{ buildGoModule 2, fetchFromGitHub 3, lib 4}: 5 6buildGoModule rec { 7 pname = "crlfuzz"; 8 version = "1.4.1"; 9 10 src = fetchFromGitHub { 11 owner = "dwisiswant0"; 12 repo = pname; 13 rev = "v${version}"; 14 sha256 = "sha256-rqhdxOQmZCRtq+IZygKLleb5GoKP2akyEc3rbGcnZmw="; 15 }; 16 17 vendorHash = "sha256-yLtISEJWIKqCuZtQxReu/Vykw5etqgLpuXqOdtwBkqU="; 18 19 doCheck = true; 20 21 meta = with lib; { 22 description = "Tool to scan for CRLF vulnerability"; 23 mainProgram = "crlfuzz"; 24 homepage = "https://github.com/dwisiswant0/crlfuzz"; 25 license = with licenses; [ mit ]; 26 maintainers = with maintainers; [ fab ]; 27 }; 28}