2021-12-30 13:39:12 +00:00
|
|
|
{ lib, buildDunePackage, fetchFromGitLab, iri, re, sedlex_2, uutf }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-12-30 13:39:12 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "xtmpl";
|
|
|
|
version = "0.19.0";
|
|
|
|
useDune2 = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "framagit.org";
|
|
|
|
owner = "zoggy";
|
|
|
|
repo = "xtmpl";
|
|
|
|
rev = version;
|
2021-12-30 13:39:12 +00:00
|
|
|
sha256 = "sha256:0vwj0aayg60wm98d91fg3hmj90730liljy4cn8771dpxvz8m07bw";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-12-30 13:39:12 +00:00
|
|
|
propagatedBuildInputs = [ iri re sedlex_2 uutf ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "XML templating library for OCaml";
|
|
|
|
homepage = "https://www.good-eris.net/xtmpl/";
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = with maintainers; [ regnat ];
|
|
|
|
};
|
|
|
|
}
|