summary refs log tree commit diff
path: root/pkgs/development/libraries/jsoncpp/default.nix
blob: 7eb7f393ba43581199c8c7a6405ddc5765f55fa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ 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";
  };
}