diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-12 23:53:17 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 13:37:37 +0100 |
commit | eff94e6bdcb958f3abe2fc8f050cb57cfe7c7ece (patch) | |
tree | 800489d4bb075a1166d9ea8b91faf66d52aac09d | |
parent | de428d4dff6bcc308364c975bcc0ff217d3197e0 (diff) | |
download | patches-eff94e6bdcb958f3abe2fc8f050cb57cfe7c7ece.tar patches-eff94e6bdcb958f3abe2fc8f050cb57cfe7c7ece.tar.gz |
gnu: ghc-pcre-light: Update to 0.4.0.4.
* gnu/packages/haskell.scm (ghc-pcre-light): Update to 0.4.0.4.
[native-inputs]: Add pkg-config.
-rw-r--r-- | gnu/packages/haskell.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 5980944367..dcac4a2837 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -2863,7 +2863,7 @@ deriving mechanism in Haskell to arbitrary classes.") (define-public ghc-pcre-light (package (name "ghc-pcre-light") - (version "0.4.0.3") + (version "0.4.0.4") (source (origin (method url-fetch) @@ -2873,10 +2873,12 @@ deriving mechanism in Haskell to arbitrary classes.") ".tar.gz")) (sha256 (base32 - "0l1df2sk5qwf424bvb8mbdkr2xjg43fi92n5r22yd7vm1zz0jqvf")))) + "0xcyi1fivwg7a92mch5bcqzmrfxzqj42rmb3m8kgs61x4qwpxj82")))) (build-system haskell-build-system) (inputs `(("pcre" ,pcre))) + (native-inputs + `(("pkg-config" ,pkg-config))) (home-page "https://github.com/Daniel-Diaz/pcre-light") (synopsis "Haskell library for Perl 5 compatible regular expressions") (description "This package provides a small, efficient, and portable regex |