libfyaml: init at 0.5.7
This commit is contained in:
parent
4b0e7b1201
commit
501e613507
21
pkgs/development/libraries/libfyaml/default.nix
Normal file
21
pkgs/development/libraries/libfyaml/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user