pango: 1.55.5 → 1.56.1

- `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
This commit is contained in:
Jan Tojnar
2025-01-24 01:50:16 +01:00
parent b59741c885
commit 50c8d8ae5f
+5 -2
View File
@@ -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)
];