gnu: Add emacs-stream.

* gnu/packages/emacs.scm (emacs-stream): New varaible.
This commit is contained in:
Federico Beffa 2016-10-20 17:32:42 +02:00
parent c907beec92
commit 8f50634ba4
No known key found for this signature in database
GPG Key ID: 58936E0E2F1B5A4C
1 changed files with 18 additions and 0 deletions

View File

@ -3320,3 +3320,21 @@ This package contains the library runtime.")
(description "This package provides an Emacs major mode for
editing nginx config files.")
(license license:gpl2+)))
(define-public emacs-stream
(package
(name "emacs-stream")
(version "2.2.0")
(home-page "https://github.com/NicolasPetton/stream")
(source
(origin
(method url-fetch)
(file-name (string-append name "-" version ".tar.gz"))
(uri (string-append home-page "/archive/"version ".tar.gz"))
(sha256
(base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
(build-system emacs-build-system)
(synopsis "Implementation of streams for Emacs")
(description "This library provides an implementation of streams for Emacs.
Streams are implemented as delayed evaluation of cons cells.")
(license license:gpl3+)))