2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, regexBase, regexPosix }:
|
2011-08-13 15:58:07 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "regex-compat";
|
|
|
|
version = "0.95.1";
|
|
|
|
sha256 = "0fwmima3f04p9y4h3c23493n1xj629ia2dxaisqm6rynljjv2z6m";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ regexBase regexPosix ];
|
2011-08-13 15:58:07 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://sourceforge.net/projects/lazy-regex";
|
|
|
|
description = "Replaces/Enhances Text.Regex";
|
|
|
|
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-08-13 15:58:07 +02:00
|
|
|
};
|
|
|
|
})
|