30 lines
752 B
Nix
30 lines
752 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cjson";
|
|
version = "1.7.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DaveGamble";
|
|
repo = "cJSON";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-PpUVsLklcs5hCCsQcsXw0oEVIWecKnQO16Hy0Ba8ov8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
# cJSON actually uses C99 standard, not C89
|
|
# https://github.com/DaveGamble/cJSON/issues/275
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt --replace -std=c89 -std=c99
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/DaveGamble/cJSON";
|
|
description = "Ultralightweight JSON parser in ANSI C";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.matthiasbeyer ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|