diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-12-04 16:48:55 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-12-04 20:05:19 +0100 |
commit | 54d860cc1732f46f893f1e788e95af4c4ea2d986 (patch) | |
tree | 5b6e1b65492c9f8c04f8aa1ee903f15b341014a5 /gnu/packages/gl.scm | |
parent | dd9d9ae4b7b6983a208d31a7b9d63198a4fedaa6 (diff) | |
download | guix-54d860cc1732f46f893f1e788e95af4c4ea2d986.tar guix-54d860cc1732f46f893f1e788e95af4c4ea2d986.tar.gz |
gnu: libepoxy: Update to 1.5.3.
* gnu/packages/gl.scm (libepoxy): Update to 1.5.3.
[build-system]: Change to MESON-BUILD-SYSTEM.
[arguments]: Delete 'bootstrap' phase.
Diffstat (limited to 'gnu/packages/gl.scm')
-rw-r--r-- | gnu/packages/gl.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 9c8ab180a4..3968e4379d 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -53,6 +53,7 @@ #:use-module (guix build utils) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) + #:use-module (guix build-system meson) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) @@ -545,7 +546,7 @@ OpenGL graphics API.") (define-public libepoxy (package (name "libepoxy") - (version "1.5.2") + (version "1.5.3") (source (origin (method url-fetch) (uri (string-append @@ -553,10 +554,11 @@ OpenGL graphics API.") version "/libepoxy-" version ".tar.xz")) (sha256 (base32 - "1n57xj5i6giw4mp5s59w1m9bm33sd6gjg7r00dzzvcwya6326mm9")))) + "0ga3qjv50x37my6pw5xr14g5n6z78hy5s8s06kays8c3ab2mha80")))) (arguments `(#:phases (modify-phases %standard-phases + (delete 'bootstrap) (add-before 'configure 'patch-paths (lambda* (#:key inputs #:allow-other-keys) @@ -568,7 +570,7 @@ OpenGL graphics API.") (("libGL.so.1") (string-append mesa "/lib/libGL.so.1")) (("libEGL.so.1") (string-append mesa "/lib/libEGL.so.1"))) #t)))))) - (build-system gnu-build-system) + (build-system meson-build-system) (native-inputs `(("pkg-config" ,pkg-config) ("python" ,python))) |