2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, 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.94.4";
|
2011-03-12 18:28:15 +01:00
|
|
|
sha256 = "1ykirysvz9ganm2k7fmrppklsgh0h35mjfsi9g1icv43pqpr6ldw";
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal 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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-19 12:07:41 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|