diff options
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 9e3a641f07..08798a6418 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -13818,7 +13818,7 @@ profiler via Sysprof, debugging support, and more.") (define-public komikku (package (name "komikku") - (version "1.57.0") + (version "1.72.0") (source (origin (method git-fetch) @@ -13828,7 +13828,9 @@ profiler via Sysprof, debugging support, and more.") (file-name (git-file-name name version)) (sha256 (base32 - "0z8sigv1a8a96y0hgm21j4qmpy06ziqw8yhlgbp8kbg70g5yhrbg")))) + "13mz3ijrmfh002pw977mzdnilgkfl0knr3xrxr0zdicx8nf7inr9")) + (patches (search-patches "komikku-python-3.11-compat.patch" + "komikku-future-servers-compat.patch")))) (build-system meson-build-system) (arguments (list @@ -13842,6 +13844,13 @@ profiler via Sysprof, debugging support, and more.") ;; code following that line should migrate old databases ;; but the line itself results in an import error "return data_dir_path")))) + (add-after 'unpack 'unpack-fonts + (lambda* (#:key inputs #:allow-other-keys) + (mkdir-p "data/fonts") + (copy-file (search-input-file + inputs + "share/fonts/opentype/0xPropo-Medium.otf") + "data/fonts/0xPropo-Medium.otf"))) (add-after 'unpack 'skip-gtk-update-icon-cache (lambda _ (substitute* "meson.build" @@ -13859,6 +13868,7 @@ profiler via Sysprof, debugging support, and more.") (,(getenv "GDK_PIXBUF_MODULE_FILE"))))))))) (inputs (list bash-minimal + font-0xpropo gtk libadwaita libnotify @@ -13904,7 +13914,7 @@ developed with the aim of being used with the Librem 5 phone.") (define-public komikku-servers (package (name "komikku-servers") - (version "1.59.0") ; latest version that works with 1.57 + (version "1.84.0") (source (origin (method git-fetch) @@ -13914,7 +13924,7 @@ developed with the aim of being used with the Librem 5 phone.") (file-name (git-file-name name version)) (sha256 (base32 - "0sfqmqcpdl3bsbs0wxl4jwvd7wpgigkvvasy1niz6qm2vnp35gzq")))) + "0sa2hq0qs20pmb13if2m37hlhk1a8741hl8pnj937az9hbsghg3g")))) (build-system copy-build-system) (arguments (list |