3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libyaml/default.nix
Vladimír Čunát 0f57d85522
Merge #43190: libyaml: 0.1.7 -> 0.2.1
It builds, the NEWS seem safe enough.
The "large" change in version is apparently due to switching
the maintenance team; ABI tracker shows no changes.
2018-08-18 12:53:48 +02:00

21 lines
517 B
Nix

{ stdenv, fetchurl }:
let
version = "0.2.1";
in
stdenv.mkDerivation {
name = "libyaml-${version}";
src = fetchurl {
url = "https://pyyaml.org/download/libyaml/yaml-${version}.tar.gz";
sha256 = "1karpcfgacgppa82wm2drcfn2kb6q2wqfykf5nrhy20sci2i2a3q";
};
meta = with stdenv.lib; {
homepage = https://pyyaml.org/;
description = "A YAML 1.1 parser and emitter written in C";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}