Merge pull request #5679 from nkaretnikov/yesod-markdown

New Haskell package: yesod-markdown
This commit is contained in:
Peter Simons 2015-01-14 20:03:14 +01:00
commit ee62982af7
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, blazeHtml, blazeMarkup, pandoc, persistent, shakespeare
, texmath, text, xssSanitize, yesodCore, yesodForm
}:
cabal.mkDerivation (self: {
pname = "yesod-markdown";
version = "0.9.3.1";
sha256 = "1spbgcsq1lkywp19k7ksiy6rsh2n060mxzh33k0ngbxxg566n08i";
buildDepends = [
blazeHtml blazeMarkup pandoc persistent shakespeare texmath text
xssSanitize yesodCore yesodForm
];
meta = {
homepage = "http://github.com/pbrisbin/yesod-markdown";
description = "Tools for using markdown in a yesod application";
license = self.stdenv.lib.licenses.gpl2;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2993,6 +2993,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
yesodJson = callPackage ../development/libraries/haskell/yesod-json {};
yesodMarkdown = callPackage ../development/libraries/haskell/yesod-markdown {};
yesodNewsfeed = callPackage ../development/libraries/haskell/yesod-newsfeed {};
yesodPersistent = callPackage ../development/libraries/haskell/yesod-persistent {};