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

cabal.mkDerivation (self : {
  pname = "regex-posix";
  version = "0.94.1"; # Haskell Platform 2010.1.0.0
  sha256 = "63e76de0610d35f1b576ae65a25a38e04e758ed64b9b3512de95bdffd649485c";
  propagatedBuildInputs = [regexBase];
  meta = {
    description = "Replaces/Enhances Text.Regex";
  };
})