ocamlPackages.markdown: init at 0.2.1 (#470167)
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
buildDunePackage,
|
||||
fetchurl,
|
||||
batteries,
|
||||
tyxml,
|
||||
ounit2,
|
||||
}:
|
||||
|
||||
buildDunePackage (finalAttrs: {
|
||||
pname = "markdown";
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/gildor478/ocaml-markdown/releases/download/v${finalAttrs.version}/markdown-v${finalAttrs.version}.tbz";
|
||||
hash = "sha256-nFdbdK0UIpqwiYGaNIoaj0UwI7/PHCDrxfxHNDYj3l4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
batteries
|
||||
tyxml
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
checkInputs = [ ounit2 ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/gildor478/ocaml-markdown";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
description = "Markdown parser and printer";
|
||||
};
|
||||
|
||||
})
|
||||
@@ -1132,6 +1132,8 @@ let
|
||||
inherit (pkgs) mariadb;
|
||||
};
|
||||
|
||||
markdown = callPackage ../development/ocaml-modules/markdown { };
|
||||
|
||||
markup = callPackage ../development/ocaml-modules/markup { };
|
||||
|
||||
mccs = callPackage ../development/ocaml-modules/mccs { };
|
||||
|
||||
Reference in New Issue
Block a user