libfyaml: init at 0.5.7

This commit is contained in:
Mario Rodas 2020-05-28 04:20:00 -05:00
parent 4b0e7b1201
commit 501e613507
No known key found for this signature in database
GPG key ID: 325649BCA6D53027
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, fetchurl, gnum4 }:
stdenv.mkDerivation rec {
pname = "libfyaml";
version = "0.5.7";
src = fetchurl {
url = "https://github.com/pantoniou/libfyaml/releases/download/v${version}/libfyaml-${version}.tar.gz";
sha256 = "143m30f006jsvhikk9nc050hxzqi8xg0sbd88kjrgfpyncdz689j";
};
nativeBuildInputs = [ gnum4 ];
meta = with stdenv.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";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}

View file

@ -12965,6 +12965,8 @@ in
libftdi1 = callPackage ../development/libraries/libftdi/1.x.nix { };
libfyaml = callPackage ../development/libraries/libfyaml { };
libgcrypt = callPackage ../development/libraries/libgcrypt { };
libgcrypt_1_5 = callPackage ../development/libraries/libgcrypt/1.5.nix { };