15c30f4342
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libyaml/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 0.2.1 with grep in /nix/store/bn221ypclyhac7pzicwf0kj7b6g03d4v-libyaml-0.2.1 - directory tree listing: https://gist.github.com/a183f8e1406cfb340cfc7e4809746583 - du listing: https://gist.github.com/6731d94c1363109427d6793cc7cd010a
21 lines
528 B
Nix
21 lines
528 B
Nix
{ stdenv, fetchurl, fetchpatch }:
|
|
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 = http://pyyaml.org/;
|
|
description = "A YAML 1.1 parser and emitter written in C";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|