mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 03:29:40 -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
|
(define-public opensubdiv
|
||||||
(package
|
(package
|
||||||
(name "opensubdiv")
|
(name "opensubdiv")
|
||||||
(version "3_4_0")
|
(version "3.4.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/PixarAnimationStudios/OpenSubdiv")
|
(url "https://github.com/PixarAnimationStudios/OpenSubdiv")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" (string-join (string-split version #\.)
|
||||||
|
"_")))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
|
Loading…
Reference in a new issue