nixpkgs/pkgs/development/libraries/haskell/regex-compat/0.92.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
505 B
Nix

{ cabal, regexBase, regexPosix }:
cabal.mkDerivation (self: {
pname = "regex-compat";
version = "0.92";
sha256 = "430d251bd704071fca1e38c9b250543f00d4e370382ed552ac3d7407d4f27936";
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 ];
};
})