mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: opensubdiv: Use a regular versioning pattern.
* gnu/packages/graphics.scm (opensubdiv)[version]: Use dots instead of underscores between numbers. [source](uri): Adjust accordingly.
This commit is contained in:
parent
4845dee706
commit
a31b745756
1 changed files with 4 additions and 3 deletions
|
@ -1026,12 +1026,13 @@ (define (bin-directory input-name)
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue