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

27 lines
663 B
Nix
Raw Normal View History

2016-04-04 18:24:44 +00:00
{ stdenv, fetchFromGitHub, libtool, autoconf, automake }:
stdenv.mkDerivation rec {
2018-08-07 23:32:00 +00:00
version = "0.99.8";
2016-04-04 18:24:44 +00:00
name = "fastjson-${version}";
src = fetchFromGitHub {
repo = "libfastjson";
owner = "rsyslog";
2018-08-07 23:32:00 +00:00
rev = "v${version}";
sha256 = "0qhs0g9slj3p0v2z4s3cnsx44msrlb4k78ljg7714qiziqbrbwyl";
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
};
}