3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/jsoncpp/default.nix

35 lines
968 B
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}";
version = "1.6.2";
src = fetchFromGitHub {
owner = "open-source-parsers";
repo = "jsoncpp";
rev = version;
sha256 = "0p92i0hx2k3g8mwrcy339b56bfq8qgpb65id8xllkgd2ns4wi9zi";
2013-10-22 16:42:06 +01:00
};
2015-05-02 06:26:52 +01:00
nativeBuildInputs = [
# cmake can be built with the system jsoncpp, or its own bundled version.
# Obviously we cannot build it against the system jsoncpp that doesn't yet exist, so
# we make a bootstrapping build with the bundled version.
(cmake.override { jsoncpp = null; })
python
];
cmakeFlags = [
"-DJSONCPP_WITH_CMAKE_PACKAGE=1"
];
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++";
2015-03-22 22:04:53 +00:00
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
license = with stdenv.lib.licenses; [ mit ];
branch = "1.6";
2013-10-22 16:42:06 +01:00
};
}