lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+6 -3
+6 -3
pkgs/development/libraries/libfyaml/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "libfyaml"; 5 - version = "0.8"; 5 + version = "0.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pantoniou"; 9 9 repo = "libfyaml"; 10 10 rev = "v${finalAttrs.version}"; 11 - hash = "sha256-b/jRKe23NIVSydoczI+Ax2VjBJLfAEwF8SW61vIDTwA="; 11 + hash = "sha256-Id5pdFzjA9q67okfESO3LZH8jIz93mVgIEEuBbPjuGI="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 15 16 16 outputs = [ "bin" "dev" "out" "man" ]; 17 17 18 + configureFlags = [ "--disable-network" ]; 19 + 18 20 doCheck = true; 19 21 20 22 preCheck = '' ··· 26 28 }; 27 29 28 30 meta = with lib; { 31 + description = "Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite"; 29 32 homepage = "https://github.com/pantoniou/libfyaml"; 30 - description = "Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite"; 33 + changelog = "https://github.com/pantoniou/libfyaml/releases/tag/v${finalAttrs.version}"; 31 34 license = licenses.mit; 32 35 maintainers = [ maintainers.marsam ]; 33 36 pkgConfigModules = [ "libfyaml" ];