about summary refs log tree commit diff
path: root/pkgs/development/libraries/libfyaml
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-09-26 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-09-26 04:20:00 +0000
commita26464a00637757687c6844b2afe491839e8aeee (patch)
tree6835c2d955555b80a8d6f0a5b2d110f2f0981369 /pkgs/development/libraries/libfyaml
parentd819d35ccdac50e38d77da4584535a20f182e95c (diff)
libfyaml: 0.8 -> 0.9
Diff: https://github.com/pantoniou/libfyaml/compare/v0.8...v0.9

Changelog: https://github.com/pantoniou/libfyaml/releases/tag/v0.9
Diffstat (limited to 'pkgs/development/libraries/libfyaml')
-rw-r--r--pkgs/development/libraries/libfyaml/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libfyaml/default.nix b/pkgs/development/libraries/libfyaml/default.nix
index e4d241415b221..f594d64095c42 100644
--- a/pkgs/development/libraries/libfyaml/default.nix
+++ b/pkgs/development/libraries/libfyaml/default.nix
@@ -2,19 +2,21 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "libfyaml";
-  version = "0.8";
+  version = "0.9";
 
   src = fetchFromGitHub {
     owner = "pantoniou";
     repo = "libfyaml";
     rev = "v${finalAttrs.version}";
-    hash = "sha256-b/jRKe23NIVSydoczI+Ax2VjBJLfAEwF8SW61vIDTwA=";
+    hash = "sha256-Id5pdFzjA9q67okfESO3LZH8jIz93mVgIEEuBbPjuGI=";
   };
 
   nativeBuildInputs = [ autoreconfHook pkg-config ];
 
   outputs = [ "bin" "dev" "out" "man" ];
 
+  configureFlags = [ "--disable-network" ];
+
   doCheck = true;
 
   preCheck = ''
@@ -26,8 +28,9 @@ stdenv.mkDerivation (finalAttrs: {
   };
 
   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";
+    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" ];