2012-02-16 18:05:41 +04:00
|
|
|
{ cabal, regexBase }:
|
2009-04-19 14:07:41 +04:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-19 14:07:41 +04:00
|
|
|
pname = "regex-posix";
|
2011-08-10 03:00:20 +04:00
|
|
|
version = "0.72.0.3";
|
2009-04-19 15:44:37 +04:00
|
|
|
sha256 = "327ab87f3d4f5315a9414331eb382b8b997de8836d577c3f7d232c574606feb1";
|
2012-02-16 18:05:41 +04:00
|
|
|
buildDepends = [ regexBase ];
|
2009-04-19 14:07:41 +04:00
|
|
|
meta = {
|
2011-08-10 03:00:20 +04:00
|
|
|
homepage = "http://sourceforge.net/projects/lazy-regex";
|
2009-04-19 15:44:37 +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 ];
|
2009-04-19 14:07:41 +04:00
|
|
|
};
|
2011-03-28 19:04:00 +04:00
|
|
|
})
|