1{
2 lib,
3 fetchFromGitHub,
4 buildDunePackage,
5}:
6
7buildDunePackage rec {
8 pname = "syslog";
9 version = "2.0.2";
10
11 minimalOCamlVersion = "4.03";
12
13 src = fetchFromGitHub {
14 owner = "geneanet";
15 repo = "ocaml-syslog";
16 rev = "v${version}";
17 hash = "sha256-WybNZBPhv4fhjzzb95E+6ZHcZUnfROLlNF3PMBGO9ys=";
18 };
19
20 meta = with lib; {
21 homepage = "https://github.com/geneanet/ocaml-syslog";
22 description = "Simple wrapper to access the system logger from OCaml";
23 license = licenses.lgpl21Plus;
24 maintainers = [ maintainers.rixed ];
25 };
26}