add haskell-cheapskate-0.1.0.1 (markdown processor)

This commit is contained in:
Mathijs Kwik 2014-04-05 09:48:19 +02:00
parent 09cdc6edf5
commit c01cc1a0e4
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ cabal, blazeHtml, dataDefault, mtl, syb, text, uniplate
, xssSanitize
}:
cabal.mkDerivation (self: {
pname = "cheapskate";
version = "0.1.0.1";
sha256 = "0slrvbaamnwxx89kqjcr62058j00s2dw4c16q1swf817az2p66h8";
isLibrary = true;
isExecutable = true;
buildDepends = [
blazeHtml dataDefault mtl syb text uniplate xssSanitize
];
meta = {
homepage = "http://github.com/jgm/cheapskate";
description = "Experimental markdown processor";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -757,6 +757,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
ChasingBottoms = callPackage ../development/libraries/haskell/ChasingBottoms {};
cheapskate = callPackage ../development/libraries/haskell/cheapskate {};
checkers = callPackage ../development/libraries/haskell/checkers {};
chell = callPackage ../development/libraries/haskell/chell {};