summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/earlybird/default.nix
blob: 1a98c748e4563e5df53ead9605520e8e7a839b18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, fetchurl, buildDunePackage, angstrom, angstrom-lwt-unix,
  batteries, cmdliner, lwt_ppx, ocaml_lwt, ppx_deriving_yojson,
  ppx_tools_versioned, yojson }:

buildDunePackage rec {
  pname = "earlybird";
  version = "0.1.5";

  minimumOCamlVersion = "4.04";

  src = fetchurl {
    url = "https://github.com/hackwaly/ocamlearlybird/releases/download/${version}/${pname}-${version}.tbz";
    sha256 = "10yflmsicw4sdmm075zjpbmxpwm9fvibnl3sl18zjpwnm6l9sv7d";
  };

  buildInputs = [ angstrom angstrom-lwt-unix batteries cmdliner lwt_ppx ocaml_lwt ppx_deriving_yojson ppx_tools_versioned yojson ];

  meta = {
    homepage = "https://github.com/hackwaly/ocamlearlybird";
    description = "OCaml debug adapter";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.romildo ];
  };
}