mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
commit
ebcee16ef0
25
pkgs/tools/security/zzuf/default.nix
Normal file
25
pkgs/tools/security/zzuf/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "zzuf";
|
||||||
|
version = "0.15";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "samhocevar";
|
||||||
|
repo = "zzuf";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0li1s11xf32dafxq1jbnc8c63313hy9ry09dja2rymk9mza4x2n9";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ autoconf automake libtool pkgconfig ];
|
||||||
|
|
||||||
|
preConfigure = "./bootstrap";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Transparent application input fuzzer.";
|
||||||
|
homepage = http://caca.zoy.org/wiki/zzuf;
|
||||||
|
license = licenses.wtfpl;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ lihop ];
|
||||||
|
};
|
||||||
|
}
|
@ -2511,6 +2511,8 @@ in
|
|||||||
|
|
||||||
zabbix-cli = callPackage ../tools/misc/zabbix-cli { };
|
zabbix-cli = callPackage ../tools/misc/zabbix-cli { };
|
||||||
|
|
||||||
|
zzuf = callPackage ../tools/security/zzuf { };
|
||||||
|
|
||||||
### DEVELOPMENT / EMSCRIPTEN
|
### DEVELOPMENT / EMSCRIPTEN
|
||||||
|
|
||||||
buildEmscriptenPackage = callPackage ../development/em-modules/generic { };
|
buildEmscriptenPackage = callPackage ../development/em-modules/generic { };
|
||||||
|
Loading…
Reference in New Issue
Block a user