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.
This commit is contained in:
Vladimír Čunát 2018-08-18 12:53:48 +02:00
commit 0f57d85522
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl }:
let
version = "0.1.7";
version = "0.2.1";
in
stdenv.mkDerivation {
name = "libyaml-${version}";
src = fetchurl {
url = "https://pyyaml.org/download/libyaml/yaml-${version}.tar.gz";
sha256 = "0a87931cx5m14a1x8rbjix3nz7agrcgndf4h392vm62a4rby9240";
sha256 = "1karpcfgacgppa82wm2drcfn2kb6q2wqfykf5nrhy20sci2i2a3q";
};
meta = with stdenv.lib; {