summary refs log tree commit diff
path: root/pkgs/development/libraries/libyaml/default.nix
blob: 5d56b6bcdcd5f571b4115ccf4a27eb2f26125b55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "libyaml";

  src = fetchurl {
    url = http://pyyaml.org/download/libyaml/yaml-0.1.3.tar.gz;
    sha256 = "a8bbad7e5250b3735126b7e3bd9f6fce9db19d6be7cc13abad17a24b59ec144a";
  };

  meta = {
    homepage = http://pyyaml.org/;
    description = "A YAML 1.1 parser and emitter written in C";
    license = "free";
  };
}