[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: mdk: Sort inputs alphabetically.
From: |
guix-commits |
Subject: |
03/03: gnu: mdk: Sort inputs alphabetically. |
Date: |
Thu, 15 Oct 2020 17:10:45 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 0ea23218ad5a625400fc478e24408e9fd1aec94a
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri Oct 16 00:07:10 2020 +0300
gnu: mdk: Sort inputs alphabetically.
* gnu/packages/education.scm (mdk)[native-inputs]: Sort inputs
alphabetically.
[inputs]: Same.
---
gnu/packages/education.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 81816ce..d91c086 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -970,15 +970,15 @@ floating through space.")
`(#:configure-flags (list "--enable-gui=yes" "-with-readline=yes")))
(native-inputs
`(("flex" ,flex)
- ("pkg-config" ,pkg-config)
- ("intltool" ,intltool)))
+ ("intltool" ,intltool)
+ ("pkg-config" ,pkg-config)))
(inputs
- `(("readline" ,readline)
- ("glib" ,glib)
+ `(("glib" ,glib)
("gtk+" ,gtk+)
+ ("libglade" ,libglade)
("ncurses" ,ncurses)
("pango" ,pango)
- ("libglade" ,libglade)))
+ ("readline" ,readline)))
(home-page "https://www.gnu.org/software/mdk/")
(synopsis "Virtual development environment for Knuth's MIX")
(description