2023-06-21 08:52:03 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
}:
|
2016-04-04 18:24:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fastjson";
|
2023-06-21 08:52:03 +00:00
|
|
|
version = "1.2304.0";
|
|
|
|
|
2016-04-04 18:24:44 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rsyslog";
|
2023-06-21 08:52:03 +00:00
|
|
|
repo = "libfastjson";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-WnM6lQjHz0n5BwWWZoDBavURokcaROXJW46RZen9vj4=";
|
2016-04-04 18:24:44 +00:00
|
|
|
};
|
|
|
|
|
2023-06-21 08:52:03 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
];
|
2016-04-04 18:24:44 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-04-04 18:24:44 +00:00
|
|
|
description = "A fast json library for C";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/rsyslog/libfastjson";
|
2016-04-04 18:24:44 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ nequissimus ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; unix;
|
2016-04-04 18:24:44 +00:00
|
|
|
};
|
|
|
|
}
|