about summary refs log tree commit diff
path: root/pkgs/development/libraries/libfyaml/default.nix
blob: 5ce8cd6c6a1dd6c7761b5c0a83c201eb9919d9c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  };
}