nixpkgs/pkgs/development/libraries/libfyaml/default.nix

30 lines
743 B
Nix
Raw Normal View History

2021-03-01 05:20:00 +01:00
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook }:
2020-05-28 11:20:00 +02:00
stdenv.mkDerivation rec {
pname = "libfyaml";
2021-09-29 18:06:34 +02:00
version = "0.7.1";
2020-05-28 11:20:00 +02:00
2021-03-01 05:20:00 +01:00
src = fetchFromGitHub {
owner = "pantoniou";
repo = pname;
rev = "v${version}";
2021-09-29 18:06:34 +02:00
sha256 = "1367cbny5msapy48z0yysbkawmk1qjqk7cjnqkjszs47riwvjz3h";
2020-05-28 11:20:00 +02:00
};
2021-03-01 05:20:00 +01:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2021-04-03 11:12:50 +02:00
doCheck = true;
preCheck = ''
patchShebangs test
'';
meta = with lib; {
2020-05-28 11:20:00 +02:00
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;
};
}