ocamlPackages.syslog-message: init at 1.1.0

This commit is contained in:
sternenseemann 2020-12-30 00:50:42 +01:00 committed by Vincent Laporte
parent f38596852f
commit 7b968c79a1
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib, buildDunePackage, fetchurl
, astring, ptime, rresult, qcheck
}:
buildDunePackage rec {
pname = "syslog-message";
version = "1.1.0";
minimumOCamlVersion = "4.03";
useDune2 = true;
src = fetchurl {
url = "https://github.com/verbosemode/${pname}/releases/download/${version}/${pname}-${version}.tbz";
sha256 = "0vy4dkl2q2fa6rzyfsvjyc9r1b9ymfqd6j35z2kp5vdc4r87053g";
};
propagatedBuildInputs = [
astring
ptime
rresult
];
doCheck = true;
checkInputs = [
qcheck
];
meta = with lib; {
description = "Syslog message parser";
homepage = "https://github.com/verbosemode/syslog-message";
license = licenses.bsd2;
maintainers = [ maintainers.sternenseemann ];
};
}

View file

@ -738,6 +738,8 @@ let
syslog = callPackage ../development/ocaml-modules/syslog { };
syslog-message = callPackage ../development/ocaml-modules/syslog-message { };
ocaml_text = callPackage ../development/ocaml-modules/ocaml-text { };
ocaml-version = callPackage ../development/ocaml-modules/ocaml-version { };