3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #118376 from marsam/update-libfyaml

libfyaml: 0.6.3 -> 0.7
This commit is contained in:
Robert Scott 2021-04-03 12:39:22 +01:00 committed by GitHub
commit 2b721d324b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,17 +2,23 @@
stdenv.mkDerivation rec {
pname = "libfyaml";
version = "0.6.3";
version = "0.7";
src = fetchFromGitHub {
owner = "pantoniou";
repo = pname;
rev = "v${version}";
sha256 = "1aw5s0ns79jr3lpcy3hdsrlr79rrv5aqymv4h43axvy2bi90nrr0";
sha256 = "10w1n4zzgw33j755pkv73fxdn93kwbzg486b5m9i0bh5d76jp4ax";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
doCheck = true;
preCheck = ''
patchShebangs test
'';
meta = with lib; {
homepage = "https://github.com/pantoniou/libfyaml";
description = "Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite";