stevenblack-blocklist: 3.15.5 -> 3.15.8 (#372042)
[NixPkgs.git] / pkgs / development / ocaml-modules / syslog / default.nix
blob293e508c283fd479e91316808fff9ab0150f7a27
2   lib,
3   fetchFromGitHub,
4   buildDunePackage,
5 }:
7 buildDunePackage rec {
8   pname = "syslog";
9   version = "2.0.2";
11   minimalOCamlVersion = "4.03";
13   src = fetchFromGitHub {
14     owner = "geneanet";
15     repo = "ocaml-syslog";
16     rev = "v${version}";
17     hash = "sha256-WybNZBPhv4fhjzzb95E+6ZHcZUnfROLlNF3PMBGO9ys=";
18   };
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   };