nixpkgs/pkgs/development/libraries/libyaml-cpp/default.nix

33 lines
970 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2016-06-20 12:45:56 +00:00
stdenv.mkDerivation rec {
pname = "libyaml-cpp";
version = "0.6.3";
2016-06-20 12:45:56 +00:00
src = fetchFromGitHub {
owner = "jbeder";
repo = "yaml-cpp";
2018-01-30 16:06:15 +00:00
rev = "yaml-cpp-${version}";
sha256 = "0ykkxzxcwwiv8l8r697gyqh1nl582krpvi7m7l6b40ijnk4pw30s";
};
# 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 ];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" "-DYAML_CPP_BUILD_TESTS=OFF" ];
meta = with lib; {
2016-06-20 12:45:56 +00:00
inherit (src.meta) homepage;
description = "A YAML parser and emitter for C++";
license = licenses.mit;
platforms = platforms.unix;
2018-01-30 16:06:15 +00:00
maintainers = with maintainers; [ andir ];
};
}