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
397 B
Nix
14 lines
397 B
Nix
{cabal, transformers}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "monad-peel";
|
|
version = "0.1";
|
|
sha256 = "0q56hdjgbj7ykpjx5z8qlqqkngmgm5wzm9vwcd7v675k2ywcl3ys";
|
|
propagatedBuildInputs = [transformers];
|
|
meta = {
|
|
description = "Lift control operations like exception catching through monad transformers";
|
|
license = "BSD";
|
|
maintainers = [self.stdenv.lib.maintainers.andres];
|
|
};
|
|
})
|