nixpkgs/pkgs/development/ocaml-modules/lwt_log/default.nix
sternenseemann 4e42cac49d ocamlPackages: stdenv.lib → lib
This change was produced by searching for remaining occurrences of
stdenv.lib and replacing them manually.

Reference #108938.
2021-01-12 16:33:18 +01:00

25 lines
550 B
Nix

{ lib, fetchFromGitHub, buildDunePackage, lwt }:
buildDunePackage rec {
pname = "lwt_log";
version = "1.1.1";
minimumOCamlVersion = "4.02";
src = fetchFromGitHub {
owner = "aantron";
repo = pname;
rev = version;
sha256 = "1n12i1rmn9cjn6p8yr6qn5dwbrwvym7ckr7bla04a1xnq8qlcyj7";
};
propagatedBuildInputs = [ lwt ];
meta = {
description = "Lwt logging library (deprecated)";
homepage = "https://github.com/aantron/lwt_log";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ];
};
}