16 lines
471 B
Nix
16 lines
471 B
Nix
|
{ cabal, regexBase }:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "regex-posix";
|
||
|
version = "0.95.2";
|
||
|
sha256 = "0gkhzhj8nvfn1ija31c7xnl6p0gadwii9ihyp219ck2arlhrj0an";
|
||
|
buildDepends = [ regexBase ];
|
||
|
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 ];
|
||
|
};
|
||
|
})
|