mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-30 22:36:50 +01:00
gnu: Add ghc-double-conversion.
* gnu/packages/haskell.scm (ghc-double-conversion): New variable.
This commit is contained in:
parent
f8362eac6a
commit
de866854aa
1 changed files with 27 additions and 0 deletions
|
@ -481,6 +481,33 @@ (define-public ghc-convertible
|
||||||
function performs the conversion you desire.")
|
function performs the conversion you desire.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-double-conversion
|
||||||
|
(package
|
||||||
|
(name "ghc-double-conversion")
|
||||||
|
(version "2.0.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
|
"double-conversion/double-conversion-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0sx2kc1gw72mjvd8vph8bbjw5whfxfv92rsdhjg1c0al75rf3ka4"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(inputs `(("ghc-text" ,ghc-text)))
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-hunit" ,ghc-hunit)
|
||||||
|
("ghc-test-framework" ,ghc-test-framework)
|
||||||
|
("ghc-test-framework-hunit" ,ghc-test-framework-hunit)
|
||||||
|
("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2)))
|
||||||
|
(home-page "https://github.com/bos/double-conversion")
|
||||||
|
(synopsis "Fast conversion between double precision floating point and text")
|
||||||
|
(description
|
||||||
|
"This package provides a library that performs fast, accurate conversion
|
||||||
|
between double precision floating point and text.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-libxml
|
(define-public ghc-libxml
|
||||||
(package
|
(package
|
||||||
(name "ghc-libxml")
|
(name "ghc-libxml")
|
||||||
|
|
Loading…
Reference in a new issue