about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/regex-compat-tdfa/default.nix
blob: 6a45c87d9a6e2aa9851f635bf06e3d6705e0d88a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, regexBase, regexTdfa }:

cabal.mkDerivation (self: {
  pname = "regex-compat-tdfa";
  version = "0.95.1.4";
  sha256 = "1p90fn90yhp7fvljjdqjp41cszidcfz4pw7fwvzyx4739b98x8sg";
  buildDepends = [ regexBase regexTdfa ];
  meta = {
    homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa";
    description = "Unicode Support version of Text.Regex, using regex-tdfa";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})