cb28766341
svn path=/nixpkgs/trunk/; revision=32327
19 lines
546 B
Nix
19 lines
546 B
Nix
{ cabal, regexBase, regexPosix }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "regex-compat";
|
|
version = "0.93.1";
|
|
sha256 = "1zlsx7a2iz5gmgrwzr6w5fz6s4ayab5bm71xlq28r3iph3vp80zf";
|
|
buildDepends = [ regexBase regexPosix ];
|
|
meta = {
|
|
homepage = "http://sourceforge.net/projects/lazy-regex";
|
|
description = "Replaces/Enhances Text.Regex";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|