diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-28 18:45:53 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-28 18:46:23 +0200 |
commit | 81e85d6299fa71eb4366b799b1858b3e0ec3483b (patch) | |
tree | 7a24c823e3a9b96a5088e4bcd74f94333553dd7f | |
parent | da29d63a10409e7886bb825a6e03ea2af787009a (diff) |
gnu: babl: Update to 0.1.86.
* gnu/packages/gimp.scm (babl): Update to 0.1.86.
[arguments]: Build with meson@0.55.
-rw-r--r-- | gnu/packages/gimp.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm index 5d005e0378..b864c88e2f 100644 --- a/gnu/packages/gimp.scm +++ b/gnu/packages/gimp.scm @@ -36,6 +36,7 @@ #:use-module (gnu packages algebra) #:use-module (gnu packages autotools) #:use-module (gnu packages base) + #:use-module (gnu packages build-tools) #:use-module (gnu packages documentation) #:use-module (gnu packages pkg-config) #:use-module (gnu packages glib) @@ -166,7 +167,7 @@ of a larger interface.") (define-public babl (package (name "babl") - (version "0.1.78") + (version "0.1.86") (source (origin (method url-fetch) (uri (list (string-append "https://download.gimp.org/pub/babl/" @@ -180,10 +181,11 @@ of a larger interface.") "/babl-" version ".tar.xz"))) (sha256 (base32 - "0fjjfb0pbgimlqi7rk8cqz8pq595b7gw8nrpkxfmixdz6cv4km8p")))) + "1w68h81kqkqnziixrx21qs0gfv2z79651h19sxn226xdb58mjgqb")))) (build-system meson-build-system) (arguments - `(#:configure-flags + `(#:meson ,meson-0.55 + #:configure-flags (list "-Denable-gir=false"))) (native-inputs `(("pkg-config" ,pkg-config))) |