haskellPackages.markdown: New expression

This commit is contained in:
Oliver Charles 2014-08-27 12:49:55 +01:00
parent fd52ebd160
commit d216d87e6e
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, attoparsec, blazeHtml, conduit, conduitExtra, dataDefault
, hspec, systemFileio, systemFilepath, text, transformers
, xssSanitize
}:
cabal.mkDerivation (self: {
pname = "markdown";
version = "0.1.9";
sha256 = "1bl86alrbl9i690sbqqlxb4hkdd0lv3x5aqc8zi55q9h0rfsi06l";
buildDepends = [
attoparsec blazeHtml conduit conduitExtra dataDefault text
transformers xssSanitize
];
testDepends = [
blazeHtml conduit conduitExtra hspec systemFileio systemFilepath
text transformers
];
meta = {
homepage = "https://github.com/snoyberg/markdown";
description = "Convert Markdown to HTML, with XSS protection";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ ocharles ];
};
})

View File

@ -1537,6 +1537,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
machines = callPackage ../development/libraries/haskell/machines {};
markdown = callPackage ../development/libraries/haskell/markdown {};
markdownUnlit = callPackage ../development/libraries/haskell/markdown-unlit {};
mathFunctions = callPackage ../development/libraries/haskell/math-functions {};