From 50c8d8ae5fba89357b0c73777c9d39bb2eeba099 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sat, 18 Jan 2025 02:17:04 +0000 Subject: [PATCH] =?UTF-8?q?pango:=201.55.5=20=E2=86=92=201.56.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - `documentation` feature started to depend on docutils, might as well enable man pages which share the dependency https://gitlab.gnome.org/GNOME/pango/-/commit/62b42d97f854f01b3c5a15c3d369090e4ba097cf https://gitlab.gnome.org/GNOME/pango/-/compare/1.55.5...1.56.0 https://gitlab.gnome.org/GNOME/pango/-/compare/1.56.0...1.56.1 --- pkgs/development/libraries/pango/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/pango/default.nix b/pkgs/development/libraries/pango/default.nix index e9ac9cc0d7e8..b79c697fa414 100644 --- a/pkgs/development/libraries/pango/default.nix +++ b/pkgs/development/libraries/pango/default.nix @@ -17,6 +17,7 @@ ninja, glib, python3, + docutils, x11Support ? !stdenv.hostPlatform.isDarwin, libXft, withIntrospection ? @@ -29,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "pango"; - version = "1.55.5"; + version = "1.56.1"; outputs = [ "bin" @@ -39,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { src = fetchurl { url = "mirror://gnome/sources/pango/${lib.versions.majorMinor finalAttrs.version}/pango-${finalAttrs.version}.tar.xz"; - hash = "sha256-45YSbqCCA8vY7xJjjmIi4uH9iqnKxnQwcv7cXy2CDdg="; + hash = "sha256-QmvmZGDJi4N4Vz5/awsqtFD2u20ux87MM66BF48kZIA="; }; depsBuildBuild = [ @@ -53,6 +54,7 @@ stdenv.mkDerivation (finalAttrs: { glib # for glib-mkenum pkg-config python3 + docutils # for rst2man, rst2html5 ] ++ lib.optionals withIntrospection [ gi-docgen @@ -87,6 +89,7 @@ stdenv.mkDerivation (finalAttrs: { mesonFlags = [ (lib.mesonBool "documentation" withIntrospection) + (lib.mesonBool "man-pages" true) (lib.mesonEnable "introspection" withIntrospection) (lib.mesonEnable "xft" x11Support) ];