diff options
author | Nikita Karetnikov <nikita@karetnikov.org> | 2012-11-27 20:06:18 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-28 00:27:44 +0100 |
commit | 6b345e06cd9e074cf589b34e78fa3ff6d33aa822 (patch) | |
tree | 3ea2b772ae797a05802fd5f865e7d3b1a821432d /distro/packages/wget.scm | |
parent | 80fe5c6046c7d54c1a4ab8ca791ec2a3a1d392db (diff) | |
download | guix-6b345e06cd9e074cf589b34e78fa3ff6d33aa822.tar guix-6b345e06cd9e074cf589b34e78fa3ff6d33aa822.tar.gz |
distro: Import 'gettext' under a different name.
* distro/packages/nano.scm, distro/packages/wget.scm: Import 'gettext'
from (distro packages gettext) under 'guix:gettext'.
Diffstat (limited to 'distro/packages/wget.scm')
-rw-r--r-- | distro/packages/wget.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/distro/packages/wget.scm b/distro/packages/wget.scm index db81042ec5..9d877ec7cd 100644 --- a/distro/packages/wget.scm +++ b/distro/packages/wget.scm @@ -17,7 +17,8 @@ ;;; along with Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (distro packages wget) - #:use-module (distro packages gettext) + #:use-module ((distro packages gettext) + #:renamer (symbol-prefix-proc 'guix:)) #:use-module (distro packages gnutls) #:use-module (distro packages perl) #:use-module (guix packages) @@ -40,7 +41,7 @@ (inputs `(("gnutls" ,gnutls) ("perl" ,perl) - ("gettext" ,gettext))) + ("gettext" ,guix:gettext))) (arguments '(#:phases (alist-cons-before 'build 'patch-/usr/bin/env |