gnu: moe: Update to 1.10.

* gnu/packages/moe.scm (moe): Update to 1.10.
[license]: Fix license, gpl2+.
This commit is contained in:
Efraim Flashner 2019-01-06 15:30:39 +02:00
parent c007e35d24
commit 644353d80d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015, 2017 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2014, 2015, 2017 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -18,7 +18,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages moe) (define-module (gnu packages moe)
#:use-module ((guix licenses) #:select (gpl3+)) #:use-module ((guix licenses) #:select (gpl2+))
#:use-module (gnu packages ncurses) #:use-module (gnu packages ncurses)
#:use-module (gnu packages compression) #:use-module (gnu packages compression)
#:use-module (guix packages) #:use-module (guix packages)
@ -28,7 +28,7 @@
(define-public moe (define-public moe
(package (package
(name "moe") (name "moe")
(version "1.9") (version "1.10")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -36,7 +36,7 @@
version ".tar.lz")) version ".tar.lz"))
(sha256 (sha256
(base32 (base32
"1wsfzy0iia0c89wnx1ilzw54wqcmlp2nz8mkpvc393z0zagrx48q")))) "0fymywdiy9xqppcmvgs7mf7d3gfrky3jp5jkxs2l3v93asml9zcc"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs `(("lzip" ,lzip))) (native-inputs `(("lzip" ,lzip)))
(inputs `(("ncurses" ,ncurses))) (inputs `(("ncurses" ,ncurses)))
@ -51,4 +51,4 @@ movements while combinations with the Control key are for commands
that will modify the text. Moe features multiple windows, unlimited that will modify the text. Moe features multiple windows, unlimited
undo/redo, unlimited line length, global search and replace, and undo/redo, unlimited line length, global search and replace, and
more.") more.")
(license gpl3+))) (license gpl2+)))