nixpkgs/pkgs/development/ocaml-modules/xtmpl/default.nix
Vincent Laporte d50c9666ca stog: 0.18.0 → 0.20.0
ocamlPackages.higlo: 0.6 → 0.8

ocamlPackages.iri: 0.4.0 → 0.6.0

ocamlPackages.ocf: 0.5.0 → 0.8.0

ocamlPackages.ocf_ppx: init at 0.8.0

ocamlPackages.xtmpl: 0.17.0 → 0.19.0

ocamlPackages.xtmpl_ppx: init at 0.19.0
2021-12-30 08:23:22 +01:00

24 lines
614 B
Nix

{ lib, buildDunePackage, fetchFromGitLab, iri, re, sedlex_2, uutf }:
buildDunePackage rec {
pname = "xtmpl";
version = "0.19.0";
useDune2 = true;
src = fetchFromGitLab {
domain = "framagit.org";
owner = "zoggy";
repo = "xtmpl";
rev = version;
sha256 = "sha256:0vwj0aayg60wm98d91fg3hmj90730liljy4cn8771dpxvz8m07bw";
};
propagatedBuildInputs = [ iri re sedlex_2 uutf ];
meta = with lib; {
description = "XML templating library for OCaml";
homepage = "https://www.good-eris.net/xtmpl/";
license = licenses.lgpl3;
maintainers = with maintainers; [ regnat ];
};
}