me
/
guix
Archived
1
0
Fork 0

gnu: Add ghc-network-byte-order.

* gnu/packages/haskell-xyz.scm (ghc-network-byte-order): New variable.
master
Timothy Sample 2019-11-03 22:11:16 -05:00
parent 5e18bb9e93
commit 096781a111
No known key found for this signature in database
GPG Key ID: 2AC6A5EC1C357C59
1 changed files with 22 additions and 0 deletions

View File

@ -6900,6 +6900,28 @@ ncurses.")
network database (<netdb.h>) API.")
(license license:bsd-3)))
(define-public ghc-network-byte-order
(package
(name "ghc-network-byte-order")
(version "0.1.1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/"
"network-byte-order/network-byte-order-"
version ".tar.gz"))
(sha256
(base32
"19cs6157amcc925vwr92q1azwwzkbam5g0k70i6qi80fhpikh37c"))))
(build-system haskell-build-system)
(native-inputs
`(("ghc-doctest" ,ghc-doctest)))
(home-page "http://hackage.haskell.org/package/network-byte-order")
(synopsis "Network byte order utilities")
(description "This library provides peek and poke functions for network
byte order.")
(license license:bsd-3)))
(define-public ghc-network-info
(package
(name "ghc-network-info")