2022-03-30 12:52:18 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, python3
|
|
|
|
, validatePkgConfig
|
|
|
|
, secureMemory ? false
|
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2019-03-21 21:46:25 +00:00
|
|
|
|
2013-10-22 15:42:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-21 21:46:25 +00:00
|
|
|
pname = "jsoncpp";
|
2024-09-13 05:50:33 +00:00
|
|
|
version = "1.9.6";
|
2020-10-20 09:15:03 +00:00
|
|
|
|
|
|
|
outputs = ["out" "dev"];
|
2015-05-02 05:26:52 +00:00
|
|
|
|
2017-02-03 11:51:59 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "open-source-parsers";
|
|
|
|
repo = "jsoncpp";
|
|
|
|
rev = version;
|
2024-09-13 05:50:33 +00:00
|
|
|
sha256 = "sha256-3msc3B8NyF8PUlNaAHdUDfCpcUmz8JVW2X58USJ5HRw=";
|
2013-10-22 15:42:06 +00:00
|
|
|
};
|
|
|
|
|
2017-02-03 11:51:59 +00:00
|
|
|
/* During darwin bootstrap, we have a cp that doesn't understand the
|
|
|
|
* --reflink=auto flag, which is used in the default unpackPhase for dirs
|
|
|
|
*/
|
|
|
|
unpackPhase = ''
|
|
|
|
cp -a ${src} ${src.name}
|
|
|
|
chmod -R +w ${src.name}
|
|
|
|
export sourceRoot=${src.name}
|
|
|
|
'';
|
2015-05-02 05:26:52 +00:00
|
|
|
|
2022-03-30 12:52:18 +00:00
|
|
|
postPatch = lib.optionalString secureMemory ''
|
|
|
|
sed -i 's/#define JSONCPP_USING_SECURE_MEMORY 0/#define JSONCPP_USING_SECURE_MEMORY 1/' include/json/version.h
|
|
|
|
'';
|
|
|
|
|
2021-03-03 00:21:24 +00:00
|
|
|
nativeBuildInputs = [ cmake python3 validatePkgConfig ];
|
2017-02-03 11:51:59 +00:00
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
2020-10-20 09:15:03 +00:00
|
|
|
"-DBUILD_OBJECT_LIBS=OFF"
|
2019-03-21 21:46:25 +00:00
|
|
|
"-DJSONCPP_WITH_CMAKE_PACKAGE=ON"
|
2023-04-21 04:39:40 +00:00
|
|
|
"-DBUILD_STATIC_LIBS=${if enableStatic then "ON" else "OFF"}"
|
2022-03-30 12:52:18 +00:00
|
|
|
]
|
|
|
|
# the test's won't compile if secureMemory is used because there is no
|
|
|
|
# comparison operators and conversion functions between
|
|
|
|
# std::basic_string<..., Json::SecureAllocator<char>> vs.
|
|
|
|
# std::basic_string<..., [default allocator]>
|
2023-04-21 04:39:40 +00:00
|
|
|
++ lib.optional ((stdenv.buildPlatform != stdenv.hostPlatform) || secureMemory) "-DJSONCPP_WITH_TESTS=OFF";
|
2013-10-22 15:42:06 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/open-source-parsers/jsoncpp";
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "C++ library for interacting with JSON";
|
2024-07-07 15:14:38 +00:00
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2016-06-28 06:41:24 +00:00
|
|
|
license = licenses.mit;
|
2017-02-03 11:51:59 +00:00
|
|
|
platforms = platforms.all;
|
2013-10-22 15:42:06 +00:00
|
|
|
};
|
|
|
|
}
|