nixpkgs/pkgs/tools/security/crlfuzz/default.nix

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

28 lines
594 B
Nix
Raw 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 19:49:57 +02:00
version = "1.4.1";
2021-01-10 17:30:15 +01:00
src = fetchFromGitHub {
owner = "dwisiswant0";
repo = pname;
rev = "v${version}";
2021-04-04 19:49:57 +02:00
sha256 = "sha256-rqhdxOQmZCRtq+IZygKLleb5GoKP2akyEc3rbGcnZmw=";
2021-01-10 17:30:15 +01:00
};
2021-04-04 19:49:57 +02:00
vendorSha256 = "sha256-yLtISEJWIKqCuZtQxReu/Vykw5etqgLpuXqOdtwBkqU=";
2021-01-10 17:30:15 +01:00
doCheck = true;
2021-01-15 10:19:50 +01:00
meta = with lib; {
2021-01-10 17:30:15 +01:00
description = "Tool to scan for CRLF vulnerability";
homepage = "https://github.com/dwisiswant0/crlfuzz";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}