mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
Fix ambiguous imports.
* gnu/packages/ocaml.scm: Hide 'zip' from (srfi srfi-1). * guix/git.scm: Select 'mkdir-p' from (guix build utils).
This commit is contained in:
parent
913027f383
commit
0ad5f80982
2 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ (define-module (gnu packages ocaml)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix svn-download)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (srfi srfi-1))
|
||||
#:use-module ((srfi srfi-1) #:hide (zip)))
|
||||
|
||||
;; A shortcut for files from ocaml forge. Downloaded files are computed from
|
||||
;; their number, not their name.
|
||||
|
|
|
@ -21,7 +21,7 @@ (define-module (guix git)
|
|||
#:use-module (git object)
|
||||
#:use-module (guix base32)
|
||||
#:use-module (guix hash)
|
||||
#:use-module (guix build utils)
|
||||
#:use-module ((guix build utils) #:select (mkdir-p))
|
||||
#:use-module (guix store)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (rnrs bytevectors)
|
||||
|
|
Loading…
Reference in a new issue