2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libtool, autoconf, automake }:
|
2016-04-04 19:24:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-01-30 11:25:14 +00:00
|
|
|
version = "0.99.9";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "fastjson";
|
2016-04-04 19:24:44 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "libfastjson";
|
|
|
|
owner = "rsyslog";
|
2018-08-08 00:32:00 +01:00
|
|
|
rev = "v${version}";
|
2021-01-30 11:25:14 +00:00
|
|
|
sha256 = "sha256-2LyBdJR0dV1CElcGfrlmNwX52lVtx9X/Z4h/1XFjOIs=";
|
2016-04-04 19:24:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ autoconf automake libtool ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sh autogen.sh
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-04-04 19:24:44 +01:00
|
|
|
description = "A fast json library for C";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/rsyslog/libfastjson";
|
2016-04-04 19:24:44 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ nequissimus ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2016-04-04 19:24:44 +01:00
|
|
|
};
|
|
|
|
}
|