ocamlPackages.dap: init at 1.0.6

authored by Vincent Laporte and committed by Vincent Laporte cdff996e 213fcedc

+37
+35
pkgs/development/ocaml-modules/dap/default.nix
···
··· 1 + { lib, buildDunePackage, fetchurl 2 + , angstrom-lwt-unix, lwt, logs, lwt_ppx, ppx_deriving_yojson, ppx_expect, ppx_here, react 3 + }: 4 + 5 + buildDunePackage rec { 6 + pname = "dap"; 7 + version = "1.0.6"; 8 + useDune2 = true; 9 + src = fetchurl { 10 + url = "https://github.com/hackwaly/ocaml-dap/releases/download/${version}/dap-${version}.tbz"; 11 + sha256 = "1zq0f8429m38a4x3h9n3rv7n1vsfjbs72pfi5902a89qwyilkcp0"; 12 + }; 13 + 14 + minimumOCamlVersion = "4.08"; 15 + 16 + buildInputs = [ 17 + lwt_ppx 18 + ]; 19 + 20 + propagatedBuildInputs = [ 21 + angstrom-lwt-unix 22 + logs 23 + lwt 24 + ppx_deriving_yojson 25 + ppx_expect 26 + ppx_here 27 + react 28 + ]; 29 + 30 + meta = { 31 + description = "Debug adapter protocol"; 32 + homepage = "https://github.com/hackwaly/ocaml-dap"; 33 + license = lib.licenses.mit; 34 + }; 35 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 236 237 ctypes = callPackage ../development/ocaml-modules/ctypes { }; 238 239 decompress = callPackage ../development/ocaml-modules/decompress { }; 240 241 diet = callPackage ../development/ocaml-modules/diet { };
··· 236 237 ctypes = callPackage ../development/ocaml-modules/ctypes { }; 238 239 + dap = callPackage ../development/ocaml-modules/dap { }; 240 + 241 decompress = callPackage ../development/ocaml-modules/decompress { }; 242 243 diet = callPackage ../development/ocaml-modules/diet { };