f89b676312
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
14 lines
371 B
Nix
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];
|
|
};
|
|
})
|