diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-08-20 00:55:01 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-08-20 00:57:25 +0200 |
commit | 5aa601a37b364c1cec0a46b0ac15dd0a30d529a3 (patch) | |
tree | ace03a8d02bdb9ba397fbff223b1f3fa13670e69 /gnu/packages/glib.scm | |
parent | 7dca30734e01216bea33511ae548bbf63fb23fac (diff) | |
download | patches-5aa601a37b364c1cec0a46b0ac15dd0a30d529a3.tar patches-5aa601a37b364c1cec0a46b0ac15dd0a30d529a3.tar.gz |
gnu: glib: Add `file' as a propagated input.
* gnu/packages/glib.scm (intltool): Add FILE as an input.
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 3190ea5da1..15031179ff 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -34,7 +34,8 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages xml) - #:use-module (gnu packages bash)) + #:use-module (gnu packages bash) + #:use-module (gnu packages file)) (define-public dbus (package @@ -162,6 +163,9 @@ dynamic loading, and an object system.") ;; the `intltool-update' script. ("gettext" ,guix:gettext) + ;; `file' is used by `intltool-update' too. + ("file" ,file) + ("perl-xml-parser" ,perl-xml-parser) ("perl" ,perl))) (home-page "https://launchpad.net/intltool/+download") |