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

34 lines
896 B
Nix
Raw Normal View History

2017-12-14 08:36:29 +01:00
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild
2017-02-18 22:57:45 +01:00
, topkg, result, lwt, cmdliner, fmt }:
let
pname = "logs";
webpage = "http://erratique.ch/software/${pname}";
in
assert stdenv.lib.versionAtLeast ocaml.version "4.01.0";
stdenv.mkDerivation rec {
name = "ocaml-${pname}-${version}";
version = "0.6.2";
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
sha256 = "1khbn7jqpid83zn8rvyh1x1sirls7zc878zj4fz985m5xlsfy853";
};
2017-12-14 08:36:29 +01:00
buildInputs = [ ocaml findlib ocamlbuild topkg fmt cmdliner lwt ];
2017-02-18 22:57:45 +01:00
propagatedBuildInputs = [ result ];
2017-12-14 08:36:29 +01:00
buildPhase = "${topkg.run} build --with-js_of_ocaml false";
2017-02-18 22:57:45 +01:00
inherit (topkg) installPhase;
meta = with stdenv.lib; {
description = "Logging infrastructure for OCaml";
homepage = "${webpage}";
inherit (ocaml.meta) platforms;
maintainers = [ maintainers.sternenseemann ];
license = licenses.isc;
};
}