python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / xtmpl / default.nix
blob6b4771fe1ff4d73551e09120ef0626bc2aecf603
1 { lib, buildDunePackage, fetchFromGitLab, iri, re, sedlex, uutf }:
3 buildDunePackage rec {
4   pname = "xtmpl";
5   version = "0.19.0";
6   useDune2 = true;
7   src = fetchFromGitLab {
8     domain = "framagit.org";
9     owner = "zoggy";
10     repo = "xtmpl";
11     rev = version;
12     sha256 = "sha256:0vwj0aayg60wm98d91fg3hmj90730liljy4cn8771dpxvz8m07bw";
13   };
15   propagatedBuildInputs = [ iri re sedlex uutf ];
17   meta = with lib; {
18     description = "XML templating library for OCaml";
19     homepage = "https://www.good-eris.net/xtmpl/";
20     license = licenses.lgpl3;
21     maintainers = with maintainers; [ regnat ];
22   };