diff options
| author | Alex Vong <alexvong1995@gmail.com> | 2017-08-06 23:37:15 +0800 | 
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2017-08-16 16:53:12 +0200 | 
| commit | f99a57dc28a97098a41978c1e85cd157c1d944a9 (patch) | |
| tree | 7a9eb5339bf39b1bd287c2979e95b6845caa3eff | |
| parent | c12562e1e853656efde136014b8727adc7cdc263 (diff) | |
gnu: Add ghc-strict.
* gnu/packages/haskell.scm (ghc-strict): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
| -rw-r--r-- | gnu/packages/haskell.scm | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index a42d17d46c..e978845567 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -1808,6 +1808,26 @@ capabilities that are optimized for performance critical use, both  in terms of large data quantities and high speed.")      (license license:bsd-3))) +(define-public ghc-strict +  (package +    (name "ghc-strict") +    (version "0.3.2") +    (source +     (origin +       (method url-fetch) +       (uri (string-append "https://hackage.haskell.org/package/strict/strict-" +                           version ".tar.gz")) +       (sha256 +        (base32 "08cjajqz9h47fkq98mlf3rc8n5ghbmnmgn8pfsl3bdldjdkmmlrc")))) +    (build-system haskell-build-system) +    (home-page "https://hackage.haskell.org/package/strict") +    (synopsis "Strict data types and String IO") +    (description +     "This package provides strict versions of some standard Haskell data +types, such as pairs, @code{Maybe} and @code{Either}.  It also contains strict +IO operations.") +    (license license:bsd-3))) +  (define-public ghc-hashable    (package      (name "ghc-hashable") | 
