8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
16 hash = "sha256-J87oS6Az1/vNdyXu3L7KmUGWzU0IAkGrGMUUha+xDXI=";
26 "-DYAML_CPP_BUILD_TOOLS=false"
27 "-DYAML_BUILD_SHARED_LIBS=${lib.boolToString (!stdenv.hostPlatform.isStatic)}"
28 "-DINSTALL_GTEST=false"
31 doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
33 passthru.updateScript = gitUpdater { };
36 description = "A YAML parser and emitter for C++";
37 homepage = "https://github.com/jbeder/yaml-cpp";
38 license = licenses.mit;
39 platforms = platforms.all;
40 maintainers = with maintainers; [ OPNA2608 ];