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