2012-02-16 18:05:41 +04:00
|
|
|
{ cabal, regexBase }:
|
2010-07-17 17:23:48 +04:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-17 17:23:48 +04:00
|
|
|
pname = "regex-posix";
|
2011-08-10 03:00:20 +04:00
|
|
|
version = "0.94.2";
|
2010-07-17 17:23:48 +04:00
|
|
|
sha256 = "ea0c1ed0ab49ade4dba1eea7a42197652ccb18b7a98c4040e37ba11d26f33067";
|
2012-02-16 18:05:41 +04:00
|
|
|
buildDepends = [ regexBase ];
|
2010-07-17 17:23:48 +04:00
|
|
|
meta = {
|
2011-08-10 03:00:20 +04:00
|
|
|
homepage = "http://sourceforge.net/projects/lazy-regex";
|
2010-07-17 17:23:48 +04:00
|
|
|
description = "Replaces/Enhances Text.Regex";
|
2011-08-10 03:00:20 +04:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 02:36:36 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-17 17:23:48 +04:00
|
|
|
};
|
2011-03-28 19:04:00 +04:00
|
|
|
})
|