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))))))
|
(list 'quasiquote inputs))))))
|
||||||
|
|
||||||
(define (pretty-uri uri version)
|
(define (pretty-uri uri version)
|
||||||
|
(if version
|
||||||
(match (factorize-uri uri version)
|
(match (factorize-uri uri version)
|
||||||
((items ...)
|
((items ...)
|
||||||
`(string-append ,@items))
|
`(string-append ,@items))
|
||||||
(x x)))
|
(x x))
|
||||||
|
uri))
|
||||||
|
|
||||||
(define (license-variable license)
|
(define (license-variable license)
|
||||||
;; Return the name of the (guix licenses) variable for LICENSE.
|
;; Return the name of the (guix licenses) variable for LICENSE.
|
||||||
|
|
Loading…
Reference in New Issue