diff options
author | Sergei Trofimovich <slyfox@inbox.ru> | 2017-05-08 20:55:48 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2017-05-09 17:52:39 +0200 |
commit | 1d698a8ba6b3e21d4975f9c14f1a10ce7e9d9ea4 (patch) | |
tree | a08870a92d8fbbf4adc0d84e791b11f11f7cac26 /gnu/packages/golang.scm | |
parent | 3369de907a0ec0030fd87e6cc9189f962d5dc5e2 (diff) | |
download | patches-1d698a8ba6b3e21d4975f9c14f1a10ce7e9d9ea4.tar patches-1d698a8ba6b3e21d4975f9c14f1a10ce7e9d9ea4.tar.gz |
gnu: go-1.4: Add missing '#:modules' imports.
Fixes <https://bugs.gnu.org/26840>.
* gnu/packages/golang.scm (go-1.4): Add missing '#:modules' imports.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 90a809eb27..13c5529f9d 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -63,7 +63,8 @@ (arguments `(#:modules ((ice-9 match) (guix build gnu-build-system) - (guix build utils)) + (guix build utils) + (srfi srfi-1)) #:tests? #f ; Tests are run by the all.bash script. #:phases (modify-phases %standard-phases |