about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/xtmpl/default.nix
blob: 7c2f0a01e53c01e39a48381cf6d1929ae16f0d3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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 ];
  };
}