forked from mirrors/nixpkgs
0f57d85522
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.
21 lines
517 B
Nix
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 ];
|
|
};
|
|
}
|