gnu: desktop-file-utils: Update to 0.26.

* gnu/packages/freedesktop.scm (desktop-file-utils): Update to 0.26.
(native-inputs): Add autoconf & automake.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Vincent Legoll 2020-12-27 16:42:31 +01:00 committed by Efraim Flashner
parent 38076e372e
commit 04172e9ca2
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1615,7 +1615,7 @@ (define-public fprintd
(define-public desktop-file-utils
(package
(name "desktop-file-utils")
(version "0.24")
(version "0.26")
(source (origin
(method url-fetch)
(uri (string-append "https://www.freedesktop.org/software/"
@ -1623,10 +1623,12 @@ (define-public desktop-file-utils
"desktop-file-utils-" version ".tar.xz"))
(sha256
(base32
"1nc3bwjdrpcrkbdmzvhckq0yngbcxspwj2n1r7jr3gmx1jk5vpm1"))))
"02bkfi6fyk4c0gh2avd897882ww5zl7qg7bzzf28qb57kvkvsvdj"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
`(("autoconf" ,autoconf)
("automake" ,automake)
("pkg-config" ,pkg-config)))
(inputs
`(("glib" ,glib)))
(home-page "https://www.freedesktop.org/wiki/Software/desktop-file-utils/")