mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add ghc-socks.
* gnu/packages/haskell.scm (ghc-socks): New variable.
This commit is contained in:
parent
4f7f06e1a2
commit
dcc5cf1d41
1 changed files with 21 additions and 0 deletions
|
@ -6089,6 +6089,27 @@ (define-public ghc-tls
|
||||||
extensions.")
|
extensions.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-socks
|
||||||
|
(package
|
||||||
|
(name "ghc-socks")
|
||||||
|
(version "0.5.4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://hackage.haskell.org/package/"
|
||||||
|
"socks/socks-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1nmldlwxqasmg359i2aa3a903gi3lmnlspvf12xk49jrg3mf3dg9"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ghc-cereal" ,ghc-cereal)
|
||||||
|
("ghc-network" ,ghc-network)))
|
||||||
|
(home-page "http://github.com/vincenthz/hs-socks")
|
||||||
|
(synopsis "SOCKS proxy (version 5) implementation.")
|
||||||
|
(description
|
||||||
|
"This library provides a SOCKS proxy (version 5) implementation.")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
||||||
(define-public idris
|
(define-public idris
|
||||||
(package
|
(package
|
||||||
(name "idris")
|
(name "idris")
|
||||||
|
|
Loading…
Reference in a new issue