nixpkgs/pkgs/development/libraries/haskell/pcre-light/default.nix
Andres Löh b18dd91057 Removing trailing whitespace.
svn path=/nixpkgs/trunk/; revision=26570
2011-03-28 15:04:00 +00:00

13 lines
318 B
Nix

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