2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, mtl }:
|
2010-07-17 15:23:48 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-17 15:23:48 +02:00
|
|
|
pname = "regex-base";
|
2011-08-10 01:00:20 +02:00
|
|
|
version = "0.93.2";
|
2011-03-12 18:28:15 +01:00
|
|
|
sha256 = "0y1j4h2pg12c853nzmczs263di7xkkmlnsq5dlp5wgbgl49mgp10";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ mtl ];
|
2010-07-17 15:23:48 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
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 ];
|
2010-07-17 15:23:48 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|