7 static ? stdenv.hostPlatform.isStatic,
10 stdenv.mkDerivation rec {
14 src = fetchFromGitHub {
18 hash = "sha256-J87oS6Az1/vNdyXu3L7KmUGWzU0IAkGrGMUUha+xDXI=";
28 "-DYAML_CPP_BUILD_TOOLS=false"
29 (lib.cmakeBool "YAML_BUILD_SHARED_LIBS" (!static))
30 "-DINSTALL_GTEST=false"
33 doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
35 passthru.updateScript = gitUpdater { };
38 description = "YAML parser and emitter for C++";
39 homepage = "https://github.com/jbeder/yaml-cpp";
40 license = licenses.mit;
41 platforms = platforms.all;
42 maintainers = with maintainers; [ OPNA2608 ];