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