nixpkgs/pkgs/development/ocaml-modules/syslog/default.nix

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

23 lines
555 B
Nix
Raw Normal View History

2023-11-16 04:58:01 +00:00
{ lib, fetchFromGitHub, buildDunePackage }:
2019-03-13 14:23:19 +00:00
2023-11-16 04:58:01 +00:00
buildDunePackage rec {
pname = "syslog";
version = "2.0.2";
2019-03-13 14:23:19 +00:00
2023-11-16 04:58:01 +00:00
minimalOCamlVersion = "4.03";
2019-03-13 14:23:19 +00:00
src = fetchFromGitHub {
2023-11-16 04:58:01 +00:00
owner = "geneanet";
2019-03-13 14:23:19 +00:00
repo = "ocaml-syslog";
rev = "v${version}";
2023-11-16 04:58:01 +00:00
hash = "sha256-WybNZBPhv4fhjzzb95E+6ZHcZUnfROLlNF3PMBGO9ys=";
2019-03-13 14:23:19 +00:00
};
meta = with lib; {
2023-11-16 04:58:01 +00:00
homepage = "https://github.com/geneanet/ocaml-syslog";
2019-03-13 14:23:19 +00:00
description = "Simple wrapper to access the system logger from OCaml";
license = licenses.lgpl21Plus;
maintainers = [ maintainers.rixed ];
};
}