summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pcre-light/default.nix
blob: 1542bb7968ac0c672557f02953d3893a3f0ecbe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, pcre}:

cabal.mkDerivation (self : {
  pname = "pcre-light";
  version = "0.3";
  sha256 = "a8cfec1c265530388efbb187426368e280331d9829fa93d8f49f16db3c3e7794";
  propagatedBuildInputs = [pcre];
  meta = {
    description = "A small, efficient and portable regex library for Perl 5 compatible regular expressions";
  };
})