diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-10-17 15:23:39 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-10-18 14:35:56 +0200 |
commit | a31b745756669631285da474e838081965c7b892 (patch) | |
tree | e285efa2dab5cee1da6279e509e3a0f8f3fee77f | |
parent | 4845dee706a1aee89917e5c7f25d3bce64f7e11c (diff) | |
download | guix-a31b745756669631285da474e838081965c7b892.tar guix-a31b745756669631285da474e838081965c7b892.tar.gz |
gnu: opensubdiv: Use a regular versioning pattern.
* gnu/packages/graphics.scm (opensubdiv)[version]: Use dots instead of
underscores between numbers.
[source](uri): Adjust accordingly.
-rw-r--r-- | gnu/packages/graphics.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index c57d90f5ac..e453d9fa5b 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -1026,12 +1026,13 @@ requirements.") (define-public opensubdiv (package (name "opensubdiv") - (version "3_4_0") + (version "3.4.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/PixarAnimationStudios/OpenSubdiv") - (commit (string-append "v" version)))) + (url "https://github.com/PixarAnimationStudios/OpenSubdiv") + (commit (string-append "v" (string-join (string-split version #\.) + "_"))))) (file-name (git-file-name name version)) (sha256 (base32 |