3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/jsoncpp/default.nix
William A. Kennington III 3550d117cc jsoncpp: 1.6.0 -> 1.6.2
2015-05-01 22:26:55 -07:00

35 lines
968 B
Nix

{ stdenv, fetchFromGitHub, cmake, python }:
stdenv.mkDerivation rec {
name = "jsoncpp-${version}";
version = "1.6.2";
src = fetchFromGitHub {
owner = "open-source-parsers";
repo = "jsoncpp";
rev = version;
sha256 = "0p92i0hx2k3g8mwrcy339b56bfq8qgpb65id8xllkgd2ns4wi9zi";
};
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"
];
meta = {
inherit version;
homepage = https://github.com/open-source-parsers/jsoncpp;
description = "A simple API to manipulate JSON data in C++";
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
license = with stdenv.lib.licenses; [ mit ];
branch = "1.6";
};
}