diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-08 16:21:14 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-08 21:56:02 +0100 |
commit | bd0af90a4e543626f4802f81267f544096e35417 (patch) | |
tree | 257855df96186096bd9afaed51706f11299f5154 /gnu/packages/xorg.scm | |
parent | 2fc865d301de71ab66bcb29f9aac22479a512dfe (diff) |
gnu: libXpm: Gettext is a native input.
* gnu/packages/xorg.scm (libxpm)[inputs]: Move GETTEXT-MINIMAL ...
[native-inputs]: ... here.
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index a02a8eb9ef..8f4d2c33ef 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -1446,12 +1446,12 @@ treat it as part of their software base when porting.") (arguments '(#:configure-flags '("--disable-static"))) (inputs - `(("gettext" ,gettext-minimal) - ("libxt" ,libxt) + `(("libxt" ,libxt) ("xorgproto" ,xorgproto) ("libxext" ,libxext))) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("gettext" ,gettext-minimal) + ("pkg-config" ,pkg-config))) (home-page "https://www.x.org/wiki/") (synopsis "Xorg XPM library") (description "XPM (X Pixmap) image file format library.") |