nixpkgs/pkgs/development/libraries/haskell/regex-tdfa/default.nix
Andres Löh f89b676312 Upgraded Hakyll to 2.4.3.
I know, that's not the latest version, but Hakyll-3 is rather
different from Hakyll-2 and the upgrade would require more work.

svn path=/nixpkgs/trunk/; revision=26291
2011-03-13 08:46:54 +00:00

14 lines
371 B
Nix

{cabal, mtl, parsec, regexBase}:
cabal.mkDerivation (self : {
pname = "regex-tdfa";
version = "1.1.8";
sha256 = "1m75xh5bwmmgg5f757dc126kv47yfqqnz9fzj1hc80p6jpzs573x";
propagatedBuildInputs = [mtl parsec regexBase];
meta = {
description = "Replaces/Enhances Text.Regex";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})