mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 07:46:20 +01:00
gnu: glu: Update to 9.0.2.
* gnu/packages/gl.scm (glu): Update to 9.0.2. [source]: Switch to GIT-FETCH. [native-inputs]: Add PKG-CONFIG, AUTOCONF, AUTOMAKE, and LIBTOOL.
This commit is contained in:
parent
ddc538ac32
commit
b40151ff4f
1 changed files with 12 additions and 5 deletions
|
@ -76,15 +76,22 @@ (define-module (gnu packages gl)
|
||||||
(define-public glu
|
(define-public glu
|
||||||
(package
|
(package
|
||||||
(name "glu")
|
(name "glu")
|
||||||
(version "9.0.1")
|
(version "9.0.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "ftp://ftp.freedesktop.org/pub/mesa/glu/glu-"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://gitlab.freedesktop.org/mesa/glu")
|
||||||
|
(commit (string-append "glu-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1xqhk9bn10nbvffw3r4p4rjslwz1l7gaycc0x2pqkr2irp7q9x7n"))))
|
"1khxfidyglpx4yd8f3xvrj05ah823cz1ygcszhcaa4w7h9kd1lbr"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config
|
||||||
|
autoconf
|
||||||
|
automake
|
||||||
|
libtool))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list mesa)) ; according to glu.pc
|
(list mesa)) ; according to glu.pc
|
||||||
(home-page "http://www.opengl.org/archives/resources/faq/technical/glu.htm")
|
(home-page "http://www.opengl.org/archives/resources/faq/technical/glu.htm")
|
||||||
|
|
Loading…
Reference in a new issue