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