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

26 lines
648 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config }:
2019-04-01 06:21:17 +00:00
stdenv.mkDerivation rec {
pname = "zzuf";
version = "0.15";
src = fetchFromGitHub {
owner = "samhocevar";
repo = "zzuf";
rev = "v${version}";
sha256 = "0li1s11xf32dafxq1jbnc8c63313hy9ry09dja2rymk9mza4x2n9";
};
2021-01-17 03:51:22 +00:00
buildInputs = [ autoconf automake libtool pkg-config ];
2019-04-01 06:21:17 +00:00
preConfigure = "./bootstrap";
meta = with lib; {
description = "Transparent application input fuzzer";
homepage = "http://caca.zoy.org/wiki/zzuf";
2019-04-01 06:21:17 +00:00
license = licenses.wtfpl;
platforms = platforms.linux;
maintainers = with maintainers; [ lihop ];
};
}