diff options
| -rw-r--r-- | crn/packages.scm | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/crn/packages.scm b/crn/packages.scm index 2001235..44e0065 100644 --- a/crn/packages.scm +++ b/crn/packages.scm @@ -20,7 +20,7 @@    #:use-module ((gnu packages) #:prefix gnu:)    #:use-module (guix diagnostics)    #:use-module (guix i18n) -  #:use-module (srfi srfi-1) +  #:use-module ((srfi srfi-1) #:prefix srfi:)    #:export (crn/search-patch              crn/search-patches              %patch-path)) @@ -38,7 +38,7 @@ FILE-NAME found in %PATCH-PATH."    (list (search-path (%patch-path) file-name) ...))  (define %channel-root -  (find (lambda (path) +  (srfi:find (lambda (path)            (file-exists? (string-append path "/crn/packages.scm")))          %load-path)) | 
