aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/earlybird
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2019-10-27 23:07:32 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2019-10-29 10:51:42 -0300
commit432258f0da7e62ce1210b1a239bae82d1c67827e (patch)
tree6c1235866e352b93eb1ca1fe5dd2eb3b9a69c2e1 /pkgs/development/ocaml-modules/earlybird
parenta0f12b059af4bf0ca65c76f6ee0e1209a94bdb77 (diff)
ocamlPackages.ocamlearlybird: init at 0.1.5
Diffstat (limited to 'pkgs/development/ocaml-modules/earlybird')
-rw-r--r--pkgs/development/ocaml-modules/earlybird/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/earlybird/default.nix b/pkgs/development/ocaml-modules/earlybird/default.nix
new file mode 100644
index 000000000000..1a98c748e456
--- /dev/null
+++ b/pkgs/development/ocaml-modules/earlybird/default.nix
@@ -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 ];
+ };
+}