1 { lib, stdenv, fetchFromGitHub, libtool, autoconf, automake }:
3 stdenv.mkDerivation rec {
6 src = fetchFromGitHub {
10 sha256 = "sha256-2LyBdJR0dV1CElcGfrlmNwX52lVtx9X/Z4h/1XFjOIs=";
13 nativeBuildInputs = [ autoconf automake ];
14 buildInputs = [ libtool ];
21 description = "A fast json library for C";
22 homepage = "https://github.com/rsyslog/libfastjson";
23 license = licenses.mit;
24 maintainers = with maintainers; [ nequissimus ];
25 platforms = with platforms; unix;