crlfuzz: init at 1.4.0

This commit is contained in:
Fabian Affolter 2021-01-10 17:30:15 +01:00
parent 51894963cb
commit 45bb37cfbf
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ buildGoModule
, fetchFromGitHub
, stdenv
}:
buildGoModule rec {
pname = "crlfuzz";
version = "1.4.0";
src = fetchFromGitHub {
owner = "dwisiswant0";
repo = pname;
rev = "v${version}";
sha256 = "03g7z7cczn52hvg6srp1i5xhdbpia226adrh2d54cs640063bx3m";
};
vendorSha256 = "19cj07f7d3ksp7lh5amdjz1s8p7xmqbwal4vp61al82n8944ify8";
doCheck = true;
meta = with stdenv.lib; {
description = "Tool to scan for CRLF vulnerability";
homepage = "https://github.com/dwisiswant0/crlfuzz";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -3026,6 +3026,8 @@ in
cmt = callPackage ../applications/audio/cmt {};
crlfuzz = callPackage ../tools/security/crlfuzz {};
hedgedoc = callPackage ../servers/web-apps/hedgedoc { };
colord = callPackage ../tools/misc/colord { };