gnu: ghc-network: Update to 2.6.3.1.
* gnu/packages/haskell.scm (ghc-network): Update to 2.6.3.1. [inputs]: Remove. [native-inputs]: Add ghc-hunit, ghc-doctest, ghc-test-framework, and ghc-test-framework-hunit.
This commit is contained in:
parent
e2d3e4d69c
commit
2f430bf8ea
|
@ -3353,7 +3353,7 @@ boxed and storable vectors.")
|
||||||
(define-public ghc-network
|
(define-public ghc-network
|
||||||
(package
|
(package
|
||||||
(name "ghc-network")
|
(name "ghc-network")
|
||||||
(version "2.6.2.1")
|
(version "2.6.3.1")
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -3364,12 +3364,15 @@ boxed and storable vectors.")
|
||||||
".tar.gz"))
|
".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1yhvpd4wigz165jvyvw9zslx7lgqdj63jh3zv5s74b5ykdfa3zd3"))))
|
"1rl2gl37cf4k0ddsq93q15fwdz1l25nhl4w205krbh7d5dg5y12p"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(inputs
|
;; The regression tests depend on an unpublished module.
|
||||||
`(("ghc-hunit" ,ghc-hunit)))
|
(arguments `(#:tests? #f))
|
||||||
(arguments
|
(native-inputs
|
||||||
`(#:tests? #f)) ; FIXME: currently missing libraries used for tests.
|
`(("ghc-hunit" ,ghc-hunit)
|
||||||
|
("ghc-doctest" ,ghc-doctest)
|
||||||
|
("ghc-test-framework" ,ghc-test-framework)
|
||||||
|
("ghc-test-framework-hunit" ,ghc-test-framework-hunit)))
|
||||||
(home-page "https://github.com/haskell/network")
|
(home-page "https://github.com/haskell/network")
|
||||||
(synopsis "Low-level networking interface")
|
(synopsis "Low-level networking interface")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue