mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
libyamlcpp: Correct meta information and boost
This commit is contained in:
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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue