guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: assimp: Update to 4.1.0.


From: Efraim Flashner
Subject: 02/02: gnu: assimp: Update to 4.1.0.
Date: Tue, 17 Jul 2018 03:34:49 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 2d4514e92c346820219e5c03e9e455e9f0f74e35
Author: Efraim Flashner <address@hidden>
Date:   Tue Jul 17 10:32:00 2018 +0300

    gnu: assimp: Update to 4.1.0.
    
    * gnu/packages/graphics.scm (assimp): Update to 4.1.0.
    [source]: Don't use unstable tarball.
    [home-page]: Update home-page.
---
 gnu/packages/graphics.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index 243814c..ad5ff8e 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -161,19 +161,20 @@ application can be customized via its API for Python 
scripting.")
 (define-public assimp
   (package
     (name "assimp")
-    (version "3.3.1")
+    (version "4.1.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/assimp/assimp/archive/v";
-                                  version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/assimp/assimp.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1gy7zlgkf4nmyv8n674p3f30asis0gjz8icyy11i693n13ww71fk"))))
+                "1rhyqfhzifdj7yibyanph3rh13ykw3i98dnn8mz65j780472hw28"))))
     (build-system cmake-build-system)
     (inputs
      `(("zlib" ,zlib)))
-    (home-page "http://assimp.org/";)
+    (home-page "http://www.assimp.org/";)
     (synopsis "Asset import library")
     (description
      "The Open Asset Import Library loads more than 40 3D file formats into



reply via email to

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