python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / dolog / default.nix
blob599cc356031b82b367d879f16e33b6649749f77f
1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild }:
3 stdenv.mkDerivation rec {
4   pname = "ocaml-dolog";
5   version = "3.0";
7   src = fetchFromGitHub {
8     owner = "UnixJunkie";
9     repo = "dolog";
10     rev = "v${version}";
11     sha256 = "sha256-6wfqT5sqo4YA8XoHH3QhG6/TyzzXCzqjmnPuBArRoj8=";
12   };
14   nativeBuildInputs = [ ocaml findlib ocamlbuild ];
16   strictDeps = true;
18   createFindlibDestdir = true;
20   doCheck = true;
21   checkTarget = "test";
23   meta = {
24     homepage = "https://github.com/UnixJunkie/dolog";
25     description = "Minimalistic lazy logger in OCaml";
26     platforms = ocaml.meta.platforms or [ ];
27     license = lib.licenses.bsd3;
28     maintainers = with lib.maintainers; [ vbgl ];
29   };