nixpkgs/pkgs/development/libraries/fastjson/default.nix

27 lines
693 B
Nix
Raw Normal View History

2016-04-04 18:24:44 +00:00
{ stdenv, fetchFromGitHub, libtool, autoconf, automake }:
stdenv.mkDerivation rec {
2016-09-03 21:02:01 +00:00
version = "v0.99.4";
2016-04-04 18:24:44 +00:00
name = "fastjson-${version}";
src = fetchFromGitHub {
repo = "libfastjson";
owner = "rsyslog";
2016-09-03 21:02:01 +00:00
rev = "6e057a094cb225c9d80d8d6e6b1f36ca88a942dd";
sha256 = "1pn207p9zns0aqm6z5l5fdgb94wyyhaw83lyvyfdxmai74nbqs65";
2016-04-04 18:24:44 +00:00
};
buildInputs = [ autoconf automake libtool ];
preConfigure = ''
sh autogen.sh
'';
meta = with stdenv.lib; {
description = "A fast json library for C";
homepage = https://github.com/rsyslog/libfastjson;
2016-04-04 18:24:44 +00:00
license = licenses.mit;
maintainers = with maintainers; [ nequissimus ];
platforms = with platforms; unix;
2016-04-04 18:24:44 +00:00
};
}