about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libfyaml
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libfyaml')
-rw-r--r--nixpkgs/pkgs/development/libraries/libfyaml/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libfyaml/default.nix b/nixpkgs/pkgs/development/libraries/libfyaml/default.nix
new file mode 100644
index 000000000000..f594d64095c4
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libfyaml/default.nix
@@ -0,0 +1,39 @@
+{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, testers }:
+
+stdenv.mkDerivation (finalAttrs: {
+  pname = "libfyaml";
+  version = "0.9";
+
+  src = fetchFromGitHub {
+    owner = "pantoniou";
+    repo = "libfyaml";
+    rev = "v${finalAttrs.version}";
+    hash = "sha256-Id5pdFzjA9q67okfESO3LZH8jIz93mVgIEEuBbPjuGI=";
+  };
+
+  nativeBuildInputs = [ autoreconfHook pkg-config ];
+
+  outputs = [ "bin" "dev" "out" "man" ];
+
+  configureFlags = [ "--disable-network" ];
+
+  doCheck = true;
+
+  preCheck = ''
+    patchShebangs test
+  '';
+
+  passthru.tests.pkg-config = testers.hasPkgConfigModules {
+    package = finalAttrs.finalPackage;
+  };
+
+  meta = with lib; {
+    description = "Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite";
+    homepage = "https://github.com/pantoniou/libfyaml";
+    changelog = "https://github.com/pantoniou/libfyaml/releases/tag/v${finalAttrs.version}";
+    license = licenses.mit;
+    maintainers = [ maintainers.marsam ];
+    pkgConfigModules = [ "libfyaml" ];
+    platforms = platforms.all;
+  };
+})