libyamlcpp: Correct meta information and boost

This commit is contained in:
William A. Kennington III 2014-09-14 16:01:38 -07:00
parent 0f7c7279d2
commit 698dfe11a3

@ -1,4 +1,4 @@
{stdenv, fetchurl, cmake, boostHeaders}:
{ stdenv, fetchurl, cmake, boost }:
stdenv.mkDerivation {
name = "libyaml-cpp-0.5.1";
@ -8,11 +8,13 @@ stdenv.mkDerivation {
sha256 = "01kg0h8ksp162kdhyzn67vnlxpj5zjbks84sh50pv61xni990z1y";
};
buildInputs = [ cmake boostHeaders ];
buildInputs = [ cmake boost ];
meta = {
meta = with stdenv.lib; {
homepage = http://code.google.com/p/yaml-cpp/;
description = "A YAML parser and emitter for C++";
license = stdenv.lib.licenses.mit;
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}