crlfuzz: init at 1.4.0
This commit is contained in:
parent
51894963cb
commit
45bb37cfbf
27
pkgs/tools/security/crlfuzz/default.nix
Normal file
27
pkgs/tools/security/crlfuzz/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3026,6 +3026,8 @@ in
|
|||||||
|
|
||||||
cmt = callPackage ../applications/audio/cmt {};
|
cmt = callPackage ../applications/audio/cmt {};
|
||||||
|
|
||||||
|
crlfuzz = callPackage ../tools/security/crlfuzz {};
|
||||||
|
|
||||||
hedgedoc = callPackage ../servers/web-apps/hedgedoc { };
|
hedgedoc = callPackage ../servers/web-apps/hedgedoc { };
|
||||||
|
|
||||||
colord = callPackage ../tools/misc/colord { };
|
colord = callPackage ../tools/misc/colord { };
|
||||||
|
Loading…
Reference in New Issue
Block a user