Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / syslog / default.nix
blobccec03296384ae6094e628a45aab2dfa0da8014f
1 { lib, stdenv, fetchFromGitHub, ocaml, findlib }:
3 assert lib.versionAtLeast (lib.getVersion ocaml) "4.03.0";
5 stdenv.mkDerivation rec {
6   pname = "ocaml${ocaml.version}-syslog";
7   version = "1.5";
9   src = fetchFromGitHub {
10     owner = "rixed";
11     repo = "ocaml-syslog";
12     rev = "v${version}";
13     sha256 = "1kqpc55ppzv9n555qgqpda49n7nvkqimzisyjx2a7338r7q4r5bw";
14   };
16   nativeBuildInputs = [ ocaml findlib ];
17   strictDeps = true;
19   buildFlags = [ "all" "opt" ];
21   createFindlibDestdir = true;
23   meta = with lib; {
24     homepage = "https://github.com/rixed/ocaml-syslog";
25     description = "Simple wrapper to access the system logger from OCaml";
26     license = licenses.lgpl21Plus;
27     inherit (ocaml.meta) platforms;
28     maintainers = [ maintainers.rixed ];
29   };