python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / omd / default.nix
blob0512e4a9e6ee3923ca0ab39bd76ac787bae0008e
1 { lib, buildDunePackage, fetchurl }:
3 buildDunePackage rec {
4   pname = "omd";
5   version = "1.3.2";
7   minimalOCamlVersion = "4.03";
9   src = fetchurl {
10     url = "https://github.com/ocaml/omd/releases/download/${version}/omd-${version}.tbz";
11     sha256 = "sha256-YCPhZCYx8I9njrVyWCCHnte7Wj/+53fN7evCjB+F+ts=";
12   };
14   meta = {
15     description = "Extensible Markdown library and tool in OCaml";
16     homepage = "https://github.com/ocaml/omd";
17     license = lib.licenses.isc;
18     maintainers = [ lib.maintainers.vbgl ];
19     mainProgram = "omd";
20   };