guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

18/21: gnu: glu: Update to 9.0.2.


From: guix-commits
Subject: 18/21: gnu: glu: Update to 9.0.2.
Date: Thu, 23 Jun 2022 13:56:44 -0400 (EDT)

mbakke pushed a commit to branch staging
in repository guix.

commit b40151ff4f1ad4230f64df408304ceb3b16ac2da
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Thu Jun 23 19:34:15 2022 +0200

    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.
---
 gnu/packages/gl.scm | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index fcc110e6bf..66db679342 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -76,15 +76,22 @@
 (define-public glu
   (package
     (name "glu")
-    (version "9.0.1")
+    (version "9.0.2")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "ftp://ftp.freedesktop.org/pub/mesa/glu/glu-";
-                                  version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://gitlab.freedesktop.org/mesa/glu";)
+                    (commit (string-append "glu-" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1xqhk9bn10nbvffw3r4p4rjslwz1l7gaycc0x2pqkr2irp7q9x7n"))))
+                "1khxfidyglpx4yd8f3xvrj05ah823cz1ygcszhcaa4w7h9kd1lbr"))))
     (build-system gnu-build-system)
+    (native-inputs
+     (list pkg-config
+           autoconf
+           automake
+           libtool))
     (propagated-inputs
      (list mesa)) ; according to glu.pc
     (home-page 
"http://www.opengl.org/archives/resources/faq/technical/glu.htm";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]