Files
nixpkgs/pkgs/development/libraries/jsoncpp/default.nix
T

51 lines
1.4 KiB
Nix
Raw Normal View History

2020-07-05 00:18:12 -04:00
{ stdenv, fetchFromGitHub, cmake, python, validatePkgConfig, fetchpatch }:
2019-03-21 17:46:25 -04:00
2013-10-22 17:42:06 +02:00
stdenv.mkDerivation rec {
2019-03-21 17:46:25 -04:00
pname = "jsoncpp";
2020-10-20 11:15:03 +02:00
version = "1.9.4";
outputs = ["out" "dev"];
2015-05-01 22:26:52 -07:00
2017-02-03 12:51:59 +01:00
src = fetchFromGitHub {
owner = "open-source-parsers";
repo = "jsoncpp";
rev = version;
2020-10-20 11:15:03 +02:00
sha256 = "0qnx5y6c90fphl9mj9d20j2dfgy6s5yr5l0xnzid0vh71zrp6jwv";
2013-10-22 17:42:06 +02:00
};
2017-02-03 12:51:59 +01: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-12 16:28:07 -04:00
2017-02-03 12:51:59 +01:00
# Hack to be able to run the test, broken because we use
# CMAKE_SKIP_BUILD_RPATH to avoid cmake resetting rpath on install
2017-02-03 17:32:33 +01:00
preBuild = if stdenv.isDarwin then ''
2020-10-20 11:15:03 +02:00
export DYLD_LIBRARY_PATH="$PWD/lib''${DYLD_LIBRARY_PATH:+:}$DYLD_LIBRARY_PATH"
2017-02-03 17:32:33 +01:00
'' else ''
2020-10-20 11:15:03 +02:00
export LD_LIBRARY_PATH="$PWD/lib''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
2017-02-03 12:51:59 +01:00
'';
2015-07-13 14:27:56 +02:00
2020-07-05 00:18:12 -04:00
nativeBuildInputs = [ cmake python validatePkgConfig ];
2017-02-03 12:51:59 +01:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DBUILD_STATIC_LIBS=OFF"
2020-10-20 11:15:03 +02:00
"-DBUILD_OBJECT_LIBS=OFF"
2019-03-21 17:46:25 -04:00
"-DJSONCPP_WITH_CMAKE_PACKAGE=ON"
2017-02-03 12:51:59 +01:00
];
2015-05-01 22:26:52 -07:00
2016-06-28 08:41:24 +02:00
meta = with stdenv.lib; {
2017-02-03 12:51:59 +01:00
inherit version;
homepage = "https://github.com/open-source-parsers/jsoncpp";
description = "A C++ library for interacting with JSON";
2019-03-21 17:46:25 -04:00
maintainers = with maintainers; [ ttuegel cpages nand0p ];
2016-06-28 08:41:24 +02:00
license = licenses.mit;
2017-02-03 12:51:59 +01:00
platforms = platforms.all;
2013-10-22 17:42:06 +02:00
};
}