* gnu/packages/haskell.scm (ghc-sandi): New variable. --- gnu/packages/haskell.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 7208fb4..815af32 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -6681,4 +6681,32 @@ to solve this problem.") "Generate tasty TestTrees automatically with TemplateHaskell.") (license license:bsd-3))) +(define-public ghc-sandi + (package + (name "ghc-sandi") + (version "0.3.6") ; darcs-2.12.0 needs version < 0.4.0 + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/sandi/sandi-" + version ".tar.gz")) + (sha256 + (base32 + "1112pxbp41bnvn8yy90404rrl7q5qdifyfa2wj6j65wa3d8b7z7s")))) + (build-system haskell-build-system) + (inputs + `(("ghc-stringsearch" ,ghc-stringsearch) + ("ghc-conduit" ,ghc-conduit) + ("ghc-exceptions" ,ghc-exceptions) + ("ghc-hunit" ,ghc-hunit) + ("ghc-tasty" ,ghc-tasty) + ("ghc-tasty-hunit" ,ghc-tasty-hunit) + ("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck) + ("ghc-tasty-th" ,ghc-tasty-th))) + (home-page "http://hackage.haskell.org/package/sandi") + (synopsis "Data encoding library") + (description "Reasonably fast data encoding library.") + (license license:bsd-3))) + ;;; haskell.scm ends here -- 2.9.3