{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook }: stdenv.mkDerivation rec { pname = "libfyaml"; version = "0.6.3"; src = fetchFromGitHub { owner = "pantoniou"; repo = pname; rev = "v${version}"; sha256 = "1aw5s0ns79jr3lpcy3hdsrlr79rrv5aqymv4h43axvy2bi90nrr0"; }; nativeBuildInputs = [ autoreconfHook pkg-config ]; meta = with 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; }; }