diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-07-28 17:55:04 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-07-28 17:55:04 +0200 |
commit | 5ea4b5943d4ce427900bb2e2e49ce27d2b293404 (patch) | |
tree | ba517237238c6d79a7d51676bab2afe98ebb50d0 | |
parent | 71de61c353906d97f189a82ca35970b9202dde19 (diff) | |
download | guix-5ea4b5943d4ce427900bb2e2e49ce27d2b293404.tar guix-5ea4b5943d4ce427900bb2e2e49ce27d2b293404.tar.gz |
gnu: glm: Update to 0.9.9.0.
* gnu/packages/maths.scm (glm): Update to 0.9.9.0.
[source](uri): Change to new download location.
-rw-r--r-- | gnu/packages/maths.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index fd3626a595..6749afd01b 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -3256,15 +3256,15 @@ Failure to do so will result in a library with poor performance.") (define-public glm (package (name "glm") - (version "0.9.6.3") + (version "0.9.9.0") (source (origin (method url-fetch) - (uri (string-append "mirror://sourceforge/ogl-math/glm-" version - "/glm-" version ".zip")) + (uri (string-append "https://github.com/g-truc/glm/releases/download/" + version "/glm-" version ".zip")) (sha256 (base32 - "1cnjmi033a16a95v6xfkr1bvfmkd26hzdjka8j1819hgn5b1nr8l")))) + "0ihjadp2sb8w312a276skfjsljm3y41bjscbxf79wn23gi00giz1")))) (build-system cmake-build-system) (native-inputs `(("unzip" ,unzip))) |