diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-10-16 00:02:13 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-10-16 00:05:19 +0300 |
commit | 62a7f3b84cec377a1359aeba0be6d1bf3e3123bb (patch) | |
tree | 40f0d4b0a477561031302f1972cc26bb172874cc | |
parent | ae6a61d7311cde7ccb863bcff57e26f7674ebc18 (diff) |
gnu: mdk: Update to 1.2.11.
* gnu/packages/education.scm (mdk): Update to 1.2.11.
[native-inputs]: Move ncurses ...
[inputs]: ... to here.
-rw-r--r-- | gnu/packages/education.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index ff1a9e309d..5f5057223e 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org> ;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> -;;; Copyright © 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018, 2019, 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net> @@ -956,27 +956,27 @@ floating through space.") (define-public mdk (package (name "mdk") - (version "1.2.10") + (version "1.2.11") (source (origin (method url-fetch) - (uri (string-append "mirror://gnu/mdk/v1.2.10/mdk-" + (uri (string-append "mirror://gnu/mdk/v" version "/mdk-" version ".tar.gz")) (sha256 (base32 - "1rwcq2b5vvv7318j92nxc5dayj27dpfhzc4rjiv4ccvsc0x35x5h")))) + "0rrac91ynya4jrhv14j9vvn21c5z80hi1zmmdxjb0d9zz6i7kjgb")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list "--enable-gui=yes" "-with-readline=yes"))) (native-inputs `(("flex" ,flex) ("pkg-config" ,pkg-config) - ("intltool" ,intltool) - ("ncurses" ,ncurses))) + ("intltool" ,intltool))) (inputs `(("readline" ,readline) ("glib" ,glib) ("gtk+" ,gtk+) + ("ncurses" ,ncurses) ("pango" ,pango) ("libglade" ,libglade))) (home-page "https://www.gnu.org/software/mdk/") |