diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-12 22:20:14 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 13:37:35 +0100 |
commit | e1358124aa9af5a1afa8b7445d6e7c0fb94f6caf (patch) | |
tree | c584bbd63ad0d02e260caa3b30e21f59c21b5263 /gnu/packages/haskell.scm | |
parent | f707b243c6f3ad948f4d7d3142f349f8408acf9e (diff) | |
download | guix-e1358124aa9af5a1afa8b7445d6e7c0fb94f6caf.tar.gz |
gnu: ghc-cheapskate: Update to 0.1.1.
* gnu/packages/haskell.scm (ghc-cheapskate): Update to 0.1.1. [inputs]: Remove ghc-aeson, ghc-http-types, ghc-wai-extra, and ghc-wai.
Diffstat (limited to 'gnu/packages/haskell.scm')
-rw-r--r-- | gnu/packages/haskell.scm | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 1c7d1e0fb1..7abc937b45 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -4190,7 +4190,7 @@ indexed variants.") (define-public ghc-cheapskate (package (name "ghc-cheapskate") - (version "0.1.0.4") + (version "0.1.1") (source (origin (method url-fetch) @@ -4200,20 +4200,16 @@ indexed variants.") ".tar.gz")) (sha256 (base32 - "0drx1hlqvdcrij4097q6bxhbfcqm73jsqv1wwhd3hsnjdmr46ch2")))) + "1hiqi7h76shjzs2zj0j8g6wnq2hbiq1hmfafdazr97fba2zl2432")))) (build-system haskell-build-system) (inputs - `(("ghc-aeson" ,ghc-aeson) + `(("ghc-mtl" ,ghc-mtl) + ("ghc-text" ,ghc-text) ("ghc-blaze-html" ,ghc-blaze-html) + ("ghc-xss-sanitize" ,ghc-xss-sanitize) ("ghc-data-default" ,ghc-data-default) - ("ghc-http-types" ,ghc-http-types) - ("ghc-mtl" ,ghc-mtl) ("ghc-syb" ,ghc-syb) - ("ghc-text" ,ghc-text) - ("ghc-uniplate" ,ghc-uniplate) - ("ghc-wai-extra" ,ghc-wai-extra) - ("ghc-wai" ,ghc-wai) - ("ghc-xss-sanitize" ,ghc-xss-sanitize))) + ("ghc-uniplate" ,ghc-uniplate))) (home-page "https://github.com/jgm/cheapskate") (synopsis "Experimental markdown processor") (description "Cheapskate is an experimental Markdown processor in pure |