python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / zzuf / default.nix
blobedf5e846801bccc37e2ac9fb0a4c75275ddbf7a6
1 { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "zzuf";
5   version = "0.15";
7   src = fetchFromGitHub {
8     owner = "samhocevar";
9     repo = "zzuf";
10     rev = "v${version}";
11     sha256 = "0li1s11xf32dafxq1jbnc8c63313hy9ry09dja2rymk9mza4x2n9";
12   };
14   nativeBuildInputs = [ pkg-config autoreconfHook ];
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   };