2024-04-21 15:54:59 +00:00
|
|
|
{ lib, buildDunePackage, fetchFromGitLab
|
2021-12-30 13:39:12 +00:00
|
|
|
, fmt, lwt_ppx, menhir, ocf_ppx, ppx_blob, xtmpl_ppx
|
|
|
|
, dune-build-info, dune-site, higlo, logs, lwt, ocf, ptime, uri, uutf, xtmpl
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
2021-12-30 13:39:12 +00:00
|
|
|
buildDunePackage rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "stog";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "1.0.0";
|
|
|
|
minimalOCamlVersion = "4.13";
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "framagit.org";
|
|
|
|
owner = "zoggy";
|
|
|
|
repo = "stog";
|
|
|
|
rev = version;
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-hMb6D6VSq2o2NjycwxZt3mZKy1FR+3afEwbOmTc991g=";
|
2023-10-09 19:29:22 +00:00
|
|
|
};
|
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
nativeBuildInputs = [ menhir ];
|
|
|
|
buildInputs = [ fmt lwt_ppx ocf_ppx ppx_blob xtmpl_ppx ];
|
2021-12-30 13:39:12 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
dune-build-info
|
|
|
|
dune-site
|
|
|
|
higlo
|
|
|
|
logs
|
|
|
|
lwt
|
|
|
|
ocf
|
|
|
|
ppx_blob
|
|
|
|
ptime
|
|
|
|
uri
|
|
|
|
uutf
|
|
|
|
xtmpl
|
|
|
|
];
|
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 documents and web site compiler";
|
|
|
|
homepage = "https://www.good-eris.net/stog";
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
maintainers = with maintainers; [ regnat ];
|
|
|
|
};
|
|
|
|
}
|