diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-08-08 23:43:13 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-08-09 07:20:09 +0200 |
commit | a801ae4cae3f2260e4a8cb3c3f342efdead31cb5 (patch) | |
tree | fa3e5a0cbc2a9516fac367f5224349687c577bde | |
parent | 9099bedfeae4ecfdbba967fece4f0850973e02f5 (diff) | |
download | gnu-guix-a801ae4cae3f2260e4a8cb3c3f342efdead31cb5.tar gnu-guix-a801ae4cae3f2260e4a8cb3c3f342efdead31cb5.tar.gz |
gnu: gspell: Order inputs alphabetically.
* gnu/packages/gnome.scm (gspell)[inputs, native-inputs]: Re-order.
-rw-r--r-- | gnu/packages/gnome.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index c3963d556b..95c9246d41 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6454,17 +6454,17 @@ that support the Assistive Technology Service Provider Interface (AT-SPI).") #t))))) (inputs `(("enchant" ,enchant) - ("iso-codes" ,iso-codes) ("gtk+" ,gtk+) - ("glib" ,glib))) + ("glib" ,glib) + ("iso-codes" ,iso-codes))) (native-inputs `(("glib" ,glib "bin") ("pkg-config" ,pkg-config) ("xmllint" ,libxml2) ;; For tests. - ("xorg-server" ,xorg-server) - ("aspell-dict-en" ,aspell-dict-en))) + ("aspell-dict-en" ,aspell-dict-en) + ("xorg-server" ,xorg-server))) (home-page "https://wiki.gnome.org/Projects/gspell") (synopsis "GNOME's alternative spell checker") (description |