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

30 lines
742 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-11-24 05:20:00 +01:00
version = "0.7.3";
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-11-24 05:20:00 +01:00
sha256 = "sha256-RxaeDtsdPtcTYJ7qMVmBCm1TsMI7YsXCz2w/Bq2RmaA=";
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;
};
}