gnu: gnote: Update to 41.2.
* gnu/packages/gnome.scm (gnote): Update to 41.2. [build-system]: Use meson. [arguments]: New field. [native-inputs]: Delete unittest-cpp. [description]: Re-indent.
parent
9d4b5877c4
commit
c9b2eb6bcd
|
@ -11563,7 +11563,7 @@ index files needed for Adwaita to be used outside of GNOME.")
|
||||||
(define-public gnote
|
(define-public gnote
|
||||||
(package
|
(package
|
||||||
(name "gnote")
|
(name "gnote")
|
||||||
(version "40.2")
|
(version "41.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -11571,8 +11571,16 @@ index files needed for Adwaita to be used outside of GNOME.")
|
||||||
(version-major version) "/"
|
(version-major version) "/"
|
||||||
"gnote-" version ".tar.xz"))
|
"gnote-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "01fqdfgcl32cf40jw9q0h7f5bghl1lvf89vln1lh41ncrk0iw6vy"))))
|
(base32 "0gs2j988rwfrxckb8qxlkyxnvqsv30q32myqish6hssfa51yzc11"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:glib-or-gtk? #t
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
|
;; Don't create 'icon-theme.cache'.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "post-install.py"
|
||||||
|
(("gtk-update-icon-cache") "true")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list desktop-file-utils
|
(list desktop-file-utils
|
||||||
`(,glib "bin")
|
`(,glib "bin")
|
||||||
|
@ -11580,7 +11588,7 @@ index files needed for Adwaita to be used outside of GNOME.")
|
||||||
intltool
|
intltool
|
||||||
itstool
|
itstool
|
||||||
pkg-config
|
pkg-config
|
||||||
unittest-cpp)) ;FIXME: not found by pkg-config
|
python))
|
||||||
(inputs
|
(inputs
|
||||||
(list glibmm
|
(list glibmm
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
|
@ -11592,9 +11600,8 @@ index files needed for Adwaita to be used outside of GNOME.")
|
||||||
libxml2
|
libxml2
|
||||||
libxslt))
|
libxslt))
|
||||||
(synopsis "Note-taking application for the GNOME desktop")
|
(synopsis "Note-taking application for the GNOME desktop")
|
||||||
(description
|
(description "Gnote is a note-taking application written for the GNOME
|
||||||
"Gnote is a note-taking application written for the GNOME desktop
|
desktop environment.")
|
||||||
environment.")
|
|
||||||
(home-page "https://wiki.gnome.org/Apps/Gnote")
|
(home-page "https://wiki.gnome.org/Apps/Gnote")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
|
Reference in New Issue