3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
508 B
Nix
17 lines
508 B
Nix
{ cabal, pcre, regexBase }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "regex-pcre";
|
|
version = "0.94.4";
|
|
sha256 = "1h16w994g9s62iwkdqa7bar2n9cfixmkzz2rm8svm960qr57valf";
|
|
buildDepends = [ regexBase ];
|
|
extraLibraries = [ pcre ];
|
|
meta = {
|
|
homepage = "http://hackage.haskell.org/package/regex-pcre";
|
|
description = "Replaces/Enhances Text.Regex";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|