2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, regexBase }:
|
2011-08-07 20:23:04 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 20:23:04 +02:00
|
|
|
pname = "regex-pcre-builtin";
|
|
|
|
version = "0.94.2.1.7.7";
|
|
|
|
sha256 = "1c4zxfild1fbpxwqcp2jnf6iwfs0z6nc8dry09gmjykxlhisxi8s";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [ regexBase ];
|
2011-08-07 20:23:04 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://sourceforge.net/projects/lazy-regex";
|
|
|
|
description = "Replaces/Enhances Text.Regex";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-07 20:23:04 +02:00
|
|
|
};
|
|
|
|
})
|