forked from mirrors/nixpkgs
ocamlPackages.ocamlearlybird: init at 0.1.5
This commit is contained in:
parent
a0f12b059a
commit
432258f0da
24
pkgs/development/ocaml-modules/earlybird/default.nix
Normal file
24
pkgs/development/ocaml-modules/earlybird/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -231,6 +231,8 @@ let
|
|||
|
||||
earley = callPackage ../development/ocaml-modules/earley { };
|
||||
|
||||
earlybird = callPackage ../development/ocaml-modules/earlybird { };
|
||||
|
||||
easy-format = callPackage ../development/ocaml-modules/easy-format { };
|
||||
|
||||
elina = callPackage ../development/ocaml-modules/elina { };
|
||||
|
|
Loading…
Reference in a new issue