2014-12-10 18:26:09 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2014-02-10 18:24:25 +00:00
|
|
|
let
|
2016-09-09 15:08:13 +01:00
|
|
|
version = "0.1.7";
|
2014-02-10 18:24:25 +00:00
|
|
|
in
|
2010-01-16 10:37:29 +00:00
|
|
|
stdenv.mkDerivation {
|
2014-02-10 18:24:25 +00:00
|
|
|
name = "libyaml-${version}";
|
2010-01-16 10:37:29 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-02-10 18:24:25 +00:00
|
|
|
url = "http://pyyaml.org/download/libyaml/yaml-${version}.tar.gz";
|
2016-09-09 15:08:13 +01:00
|
|
|
sha256 = "0a87931cx5m14a1x8rbjix3nz7agrcgndf4h392vm62a4rby9240";
|
2010-01-16 10:37:29 +00:00
|
|
|
};
|
|
|
|
|
2014-02-10 18:24:25 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-01-16 10:37:29 +00:00
|
|
|
homepage = http://pyyaml.org/;
|
|
|
|
description = "A YAML 1.1 parser and emitter written in C";
|
2014-02-10 18:24:25 +00:00
|
|
|
license = licenses.mit;
|
2014-09-14 05:33:37 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2010-01-16 10:37:29 +00:00
|
|
|
};
|
|
|
|
}
|