diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-23 23:24:53 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-23 23:24:53 +0100 |
commit | 404e386ed01a7a84565e4b49b71d456fbcc506c4 (patch) | |
tree | 0df0ef86d94ae37038c8e37693bb1b52be23a711 /gnu | |
parent | b92a36dbc825472c5b8159e4b78e31e4e06b5ded (diff) |
gnu: shared-mime-info: Update to 1.15.
* gnu/packages/gnome.scm (shared-mime-info): Update to 1.15.
[native-inputs]: Remove INTLTOOL. Add GETTEXT-MINIMAL and ITSTOOL.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 6e6239a978..960ff24148 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1709,14 +1709,16 @@ guidelines.") (define-public shared-mime-info (package (name "shared-mime-info") - (version "1.10") + (version "1.15") (source (origin (method url-fetch) - (uri (string-append "https://freedesktop.org/~hadess/" - "shared-mime-info-" version ".tar.xz")) + (uri (string-append + "https://gitlab.freedesktop.org/xdg/shared-mime-info/uploads/" + "b27eb88e4155d8fccb8bb3cd12025d5b/shared-mime-info-" version + ".tar.xz")) (sha256 (base32 - "1gxyvwym3xgpmp262gfn8jg5sla6k5hy6m6dmy6grgiq90xsh9f6")))) + "146vynj78wcwdq0ms52jzm1r4m6dzi1rhyh3h4xyb6bw8ckv10pl")))) (build-system gnu-build-system) (arguments ;; The build system appears not to be parallel-safe. @@ -1725,7 +1727,8 @@ guidelines.") `(("glib" ,glib) ("libxml2" ,libxml2))) (native-inputs - `(("intltool" ,intltool) + `(("gettext" ,gettext-minimal) + ("itstool" ,itstool) ("pkg-config" ,pkg-config))) (home-page "https://www.freedesktop.org/wiki/Software/shared-mime-info") (synopsis "Database of common MIME types") |