2011-08-10 01:00:20 +02: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";
|
|
|
|
version = "0.94.2";
|
|
|
|
sha256 = "0p4az8z4jlrcmmyz9bjf7n90hpg6n242vq4255w2dz5v29l822wn";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [ regexBase ];
|
|
|
|
extraLibraries = [ pcre ];
|
2011-04-01 01:21:36 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://sourceforge.net/projects/lazy-regex";
|
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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-04-01 01:21:36 +02:00
|
|
|
};
|
|
|
|
})
|