Add libyaml and PyYAML.

svn path=/nixpkgs/trunk/; revision=19477
This commit is contained in:
Nicolas Pierron
2010-01-16 10:37:29 +00:00
parent 8b94315e22
commit 841e48d19b
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,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";
};
}