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:51:32 +0200 |
commit | bc81e6cae40098684c14b10d0aa4c6257acbbdb6 (patch) | |
tree | a1213e1e2d0267c613dddfd74547730c9d766fe7 | |
parent | 47babd445a9f0e6fe9356cbe362d390f09df4e3b (diff) | |
download | guix-bc81e6cae40098684c14b10d0aa4c6257acbbdb6.tar guix-bc81e6cae40098684c14b10d0aa4c6257acbbdb6.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>
-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 00630ce067..d19aa65afc 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -62,7 +62,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 |