Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
562 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchFromGitHub,
buildDunePackage,
}:
buildDunePackage rec {
pname = "syslog";
version = "2.0.2";
minimalOCamlVersion = "4.03";
src = fetchFromGitHub {
owner = "geneanet";
repo = "ocaml-syslog";
rev = "v${version}";
hash = "sha256-WybNZBPhv4fhjzzb95E+6ZHcZUnfROLlNF3PMBGO9ys=";
};
meta = with lib; {
homepage = "https://github.com/geneanet/ocaml-syslog";
description = "Simple wrapper to access the system logger from OCaml";
license = licenses.lgpl21Plus;
maintainers = [ maintainers.rixed ];
};
}