mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add ghc-sendfile.
* gnu/packages/haskell-web.scm (ghc-sendfile): New variable. Signed-off-by: Brett Gilio <brettg@posteo.net>
This commit is contained in:
parent
72a0706f44
commit
0ef07d79b9
1 changed files with 21 additions and 0 deletions
|
@ -1527,3 +1527,24 @@ (define-public ghc-js-flot
|
|||
version. The package is designed to meet the redistribution
|
||||
requirements of downstream users (e.g. Debian).")
|
||||
(license license:expat)))
|
||||
(define-public ghc-sendfile
|
||||
(package
|
||||
(name "ghc-sendfile")
|
||||
(version "0.7.11.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://hackage.haskell.org/package/sendfile/sendfile-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0988snmx3bylpw3kcq8hsgji8idc6xcrcfp275qjv3apfdgc9rp0"))))
|
||||
(build-system haskell-build-system)
|
||||
(inputs `(("ghc-network" ,ghc-network)))
|
||||
(home-page
|
||||
"https://hub.darcs.net/stepcut/sendfile")
|
||||
(synopsis "Portable sendfile library for Haskell")
|
||||
(description
|
||||
"Haskell library which exposes zero-copy sendfile functionality in a portable way.")
|
||||
(license license:bsd-3)))
|
||||
|
|
Loading…
Reference in a new issue