me
/
guix
Archived
1
0
Fork 0

gnu: Add ghc-concatenative.

* gnu/packages/haskell.scm (ghc-concatenative): New variable.
master
Ludovic Courtès 2016-06-06 16:49:22 +02:00
parent 2aa0bada76
commit 839415ecbc
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 22 additions and 0 deletions

View File

@ -732,6 +732,28 @@ tool lex or flex for C/C++.")
"This library provides an easy way to define command line parsers.")
(license license:bsd-3)))
(define-public ghc-concatenative
(package
(name "ghc-concatenative")
(version "1.0.1")
(source (origin
(method url-fetch)
(uri (string-append
"http://hackage.haskell.org/package/concatenative/concatenative-"
version ".tar.gz"))
(sha256
(base32
"05xwqvcdnk8bsyj698ab9jxpa1nk23pf3m7wi9mwmw0q8n99fngd"))))
(build-system haskell-build-system)
(home-page
"https://patch-tag.com/r/salazar/concatenative/snapshot/current/content/pretty")
(synopsis "Library for postfix control flow")
(description
"Concatenative gives Haskell Factor-style combinators and arrows for
postfix notation. For more information on stack based languages, see
@uref{http://concatenative.org}.")
(license license:bsd-3)))
(define-public ghc-happy
(package
(name "ghc-happy")