mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
haskellPackages.markdown: New expression
This commit is contained in:
parent
fd52ebd160
commit
d216d87e6e
27
pkgs/development/libraries/haskell/markdown/default.nix
Normal file
27
pkgs/development/libraries/haskell/markdown/default.nix
Normal 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 ];
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user