5f8328c461
svn path=/nixpkgs/trunk/; revision=22620
13 lines
341 B
Nix
13 lines
341 B
Nix
{cabal, regexBase, regexPosix}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "regex-compat";
|
|
version = "0.93.1"; # Haskell Platform 2010.2.0.0
|
|
sha256 = "ee0374f780378e8c04a63d9cbaca525e116dbe2bdce4cff3abaffc28d4e99afe";
|
|
propagatedBuildInputs = [regexBase regexPosix];
|
|
meta = {
|
|
description = "Replaces/Enhances Text.Regex";
|
|
};
|
|
})
|
|
|