depot/third_party/nixpkgs/pkgs/development/ocaml-modules/dolog/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

27 lines
693 B
Nix

{ stdenv, lib, fetchzip, ocaml, findlib, ocamlbuild }:
let version = "3.0"; in
stdenv.mkDerivation {
pname = "ocaml-dolog";
inherit version;
src = fetchzip {
url = "https://github.com/UnixJunkie/dolog/archive/v${version}.tar.gz";
sha256 = "0gx2s4509vkkkaikl2yp7k5x7bqv45s1y1vsy408d8rakd7yl1zb";
};
buildInputs = [ ocaml findlib ocamlbuild ];
createFindlibDestdir = true;
doCheck = true;
checkTarget = "test";
meta = {
homepage = "https://github.com/UnixJunkie/dolog";
description = "Minimalistic lazy logger in OCaml";
platforms = ocaml.meta.platforms or [];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ vbgl ];
};
}