2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, pcre, regexBase }:
|
2011-04-01 00:21:36 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-04-01 00:21:36 +01:00
|
|
|
pname = "regex-pcre";
|
2012-05-31 08:24:54 +01:00
|
|
|
version = "0.94.4";
|
|
|
|
sha256 = "1h16w994g9s62iwkdqa7bar2n9cfixmkzz2rm8svm960qr57valf";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ regexBase ];
|
2011-08-10 00:00:20 +01:00
|
|
|
extraLibraries = [ pcre ];
|
2011-04-01 00:21:36 +01:00
|
|
|
meta = {
|
2012-05-31 08:24:54 +01:00
|
|
|
homepage = "http://hackage.haskell.org/package/regex-pcre";
|
2011-04-01 00:21:36 +01:00
|
|
|
description = "Replaces/Enhances Text.Regex";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-04-01 00:21:36 +01:00
|
|
|
};
|
|
|
|
})
|