me
/
guix
Archived
1
0
Fork 0

build/jami-service: Fix range ends in account-fingerprint-rx.

This broke compilation of Guix with guile@3.0.2 with:

  In procedure make-regexp: Invalid range end

The fix is to replace [0-9A-f] with [0-9A-Fa-f].

* gnu/build/jami-service.scm (account-fingerprint-rx): Correct regexp.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
master
Maxime Devos 2021-08-30 19:39:35 +02:00 committed by Efraim Flashner
parent bac072e09b
commit d3d2fae2ce
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ before each retry."
(list key value))) (list key value)))
alist)) alist))
(define account-fingerprint-rx (make-regexp "[0-9A-f]{40}")) (define account-fingerprint-rx (make-regexp "[0-9A-Fa-f]{40}"))
(define (account-fingerprint? val) (define (account-fingerprint? val)
"A Jami account fingerprint is 40 characters long and only contains "A Jami account fingerprint is 40 characters long and only contains