summary refs log tree commit diff
path: root/pkgs/development/libraries/libyaml-cpp/0.3.x.nix
blob: 4b0acd83fc39a2719d7905b1d06ad315de9343ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, cmake, boostHeaders}:

stdenv.mkDerivation {
  name = "libyaml-cpp-0.3.0";

  src = fetchurl {
    url = http://yaml-cpp.googlecode.com/files/yaml-cpp-0.3.0.tar.gz;
    sha256 = "10kv25zgq96ybxc6c19lzpax1xi5lpxrdqa9x52nffsql6skil1c";
  };

  buildInputs = [ cmake boostHeaders ];

  meta = {
    homepage = http://code.google.com/p/yaml-cpp/;
    description = "A YAML parser and emitter for C++";
    license = "MIT";
  };
}