snix: When unable to determine the version number, leave the URI unchanged.
* guix/snix.scm (snix-derivation->guix-package)[pretty-uri]: When VERSION is #f, return URI.
This commit is contained in:
parent
0ec1af59e5
commit
5b00f53526
|
@ -388,10 +388,12 @@ location of DERIVATION."
|
|||
(list 'quasiquote inputs))))))
|
||||
|
||||
(define (pretty-uri uri version)
|
||||
(match (factorize-uri uri version)
|
||||
((items ...)
|
||||
`(string-append ,@items))
|
||||
(x x)))
|
||||
(if version
|
||||
(match (factorize-uri uri version)
|
||||
((items ...)
|
||||
`(string-append ,@items))
|
||||
(x x))
|
||||
uri))
|
||||
|
||||
(define (license-variable license)
|
||||
;; Return the name of the (guix licenses) variable for LICENSE.
|
||||
|
|
Loading…
Reference in New Issue