Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 pname = "zzuf"; 5 version = "0.15"; 6 7 src = fetchFromGitHub { 8 owner = "samhocevar"; 9 repo = "zzuf"; 10 rev = "v${version}"; 11 sha256 = "0li1s11xf32dafxq1jbnc8c63313hy9ry09dja2rymk9mza4x2n9"; 12 }; 13 14 nativeBuildInputs = [ pkg-config autoreconfHook ]; 15 16 meta = with lib; { 17 description = "Transparent application input fuzzer"; 18 homepage = "http://caca.zoy.org/wiki/zzuf"; 19 license = licenses.wtfpl; 20 platforms = platforms.linux; 21 maintainers = with maintainers; [ lihop ]; 22 }; 23}