python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / yajl / default.nix
blob022284b0b1303ec8f487dcd6ae3ee8092cfaf5ae
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "yajl";
5   version = "2.1.0";
7   src = fetchFromGitHub {
8     owner = "lloyd";
9     repo = "yajl";
10     rev = "refs/tags/${version}";
11     sha256 = "00yj06drb6izcxfxfqlhimlrb089kka0w0x8k27pyzyiq7qzcvml";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = {
17     description = "Yet Another JSON Library";
18     longDescription = ''
19       YAJL is a small event-driven (SAX-style) JSON parser written in ANSI
20       C, and a small validating JSON generator.
21     '';
22     homepage = "http://lloyd.github.com/yajl/";
23     license = lib.licenses.isc;
24     platforms = with lib.platforms; linux ++ darwin;
25     maintainers = with lib.maintainers; [ maggesi ];
26   };