2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2013-07-02 21:42:47 +01:00
|
|
|
|
2016-06-20 13:45:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libyaml-cpp";
|
2019-10-09 02:18:28 +01:00
|
|
|
version = "0.6.3";
|
2013-07-02 21:42:47 +01:00
|
|
|
|
2016-06-20 13:45:56 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jbeder";
|
|
|
|
repo = "yaml-cpp";
|
2018-01-30 16:06:15 +00:00
|
|
|
rev = "yaml-cpp-${version}";
|
2019-10-09 02:18:28 +01:00
|
|
|
sha256 = "0ykkxzxcwwiv8l8r697gyqh1nl582krpvi7m7l6b40ijnk4pw30s";
|
2013-07-02 21:42:47 +01:00
|
|
|
};
|
|
|
|
|
2020-02-29 20:26:43 +00:00
|
|
|
# implement https://github.com/jbeder/yaml-cpp/commit/52a1378e48e15d42a0b755af7146394c6eff998c
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace CMakeLists.txt \
|
|
|
|
--replace 'option(YAML_BUILD_SHARED_LIBS "Build Shared Libraries" OFF)' \
|
|
|
|
'option(YAML_BUILD_SHARED_LIBS "Build yaml-cpp shared library" ''${BUILD_SHARED_LIBS})'
|
|
|
|
'';
|
|
|
|
|
2018-01-30 16:06:15 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2013-07-02 21:42:47 +01:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" "-DYAML_CPP_BUILD_TESTS=OFF" ];
|
2016-09-01 13:12:17 +01:00
|
|
|
|
2014-09-15 00:01:38 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 13:45:56 +01:00
|
|
|
inherit (src.meta) homepage;
|
2013-07-02 21:42:47 +01:00
|
|
|
description = "A YAML parser and emitter for C++";
|
2014-09-15 00:01:38 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2018-01-30 16:06:15 +00:00
|
|
|
maintainers = with maintainers; [ andir ];
|
2013-07-02 21:42:47 +01:00
|
|
|
};
|
|
|
|
}
|