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

26 lines
628 B
Nix
Raw Normal View History

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