summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/regex-compat/0.71.0.1.nix
blob: 19e643d906ab8d2e4b7ce7821045efe5a5a1a40a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, regexBase, regexPosix}:

cabal.mkDerivation (self : {
  pname = "regex-compat";
  version = "0.71.0.1"; # Haskell Platform 2009.0.0
  sha256 = "904552f7d690686b2602f37494827d09b09fc0a8a2565522b61847bec8d1de8d";
  propagatedBuildInputs = [regexBase regexPosix];
  meta = {
    description = "Replaces/Enhances Text.Regex";
  };
})