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