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

46 lines
1.2 KiB
Nix
Raw Normal View History

2015-05-02 06:26:52 +01:00
{ stdenv, fetchFromGitHub, cmake, python }:
2013-10-22 16:42:06 +01:00
stdenv.mkDerivation rec {
2015-05-02 06:26:52 +01:00
name = "jsoncpp-${version}";
2015-08-07 22:42:45 +01:00
version = "1.6.5";
2015-05-02 06:26:52 +01:00
src = fetchFromGitHub {
owner = "open-source-parsers";
repo = "jsoncpp";
rev = version;
2015-08-07 22:42:45 +01:00
sha256 = "08y54n4v3q18ik8iv8zyziava3x130ilzf1l3qli3vjwf6l42fm0";
2013-10-22 16:42:06 +01:00
};
2015-05-12 21:28:07 +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}
'';
# Hack to be able to run the test, broken because we use
# CMAKE_SKIP_BUILD_RPATH to avoid cmake resetting rpath on install
preBuild = ''
export LD_LIBRARY_PATH="`pwd`/src/lib_json:$LD_LIBRARY_PATH"
'';
nativeBuildInputs = [ cmake python ];
2015-05-02 06:26:52 +01:00
cmakeFlags = [
"-DJSONCPP_LIB_BUILD_SHARED=ON"
"-DJSONCPP_LIB_BUILD_STATIC=OFF"
"-DJSONCPP_WITH_CMAKE_PACKAGE=ON"
2015-05-02 06:26:52 +01:00
];
2013-10-22 16:42:06 +01:00
meta = {
2015-03-22 22:04:53 +00:00
inherit version;
homepage = https://github.com/open-source-parsers/jsoncpp;
2013-10-22 16:42:06 +01:00
description = "A simple API to manipulate JSON data in C++";
maintainers = with stdenv.lib.maintainers; [ ttuegel page ];
license = stdenv.lib.licenses.mit;
2015-03-22 22:04:53 +00:00
branch = "1.6";
2013-10-22 16:42:06 +01:00
};
}