1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/markdown/default.nix
2014-09-20 11:29:36 +02:00

28 lines
880 B
Nix

# 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.11";
sha256 = "1v5bqwzh0v17ylgnbl16bw4n9shyrff7nabwnzzhs2wmqp85n3js";
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 ];
};
})