libfastjson: init at v0.99.2

This commit is contained in:
Tim Steinbach 2016-04-04 14:24:44 -04:00
parent b375260add
commit 74eee1f306
2 changed files with 32 additions and 5 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, libtool, autoconf, automake }:
stdenv.mkDerivation rec {
version = "v0.99.2";
name = "fastjson-${version}";
src = fetchFromGitHub {
repo = "libfastjson";
owner = "rsyslog";
rev = "eabae907c9d991143e17da278a239819f2e8ae1c";
sha256 = "17fhaqdn0spc4p0848ahcy68swm6l5yd3bx6bdzxmmwj1jdrmvzk";
};
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";
license = licenses.mit;
maintainers = with maintainers; [ nequissimus ];
};
}

View File

@ -755,6 +755,8 @@ in
fasd = callPackage ../tools/misc/fasd { };
fastJson = callPackage ../development/libraries/fastjson { };
fop = callPackage ../tools/typesetting/fop { };
fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; };