depot/third_party/nixpkgs/pkgs/development/libraries/yajl/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

25 lines
705 B
Nix

{ lib, stdenv, fetchurl, cmake }:
stdenv.mkDerivation rec {
name = "yajl-2.1.0";
src = fetchurl {
url = "https://github.com/lloyd/yajl/tarball/2.1.0";
name = "${name}.tar.gz";
sha256 = "0f6yrjc05aa26wfi7lqn2gslm19m6rm81b30ksllpkappvh162ji";
};
nativeBuildInputs = [ cmake ];
meta = {
description = "Yet Another JSON Library";
longDescription = ''
YAJL is a small event-driven (SAX-style) JSON parser written in ANSI
C, and a small validating JSON generator.
'';
homepage = "http://lloyd.github.com/yajl/";
license = lib.licenses.isc;
platforms = with lib.platforms; linux ++ darwin;
maintainers = with lib.maintainers; [ maggesi ];
};
}