about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2022-05-13 09:55:12 -0300
committerVincent Laporte <vbgl@users.noreply.github.com>2022-05-13 16:26:01 +0200
commit02bd4336d91160a8a02f0f2c4f58ace9aa3eba10 (patch)
tree77d0bb360961f63763b43a3476b68e582bd3c96b /pkgs/development
parent41989e91de60635b97f056cf84afb9819a895e71 (diff)
ocamlPackages.telegraml: init unstable-2021-06-17
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/telegraml/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/telegraml/default.nix b/pkgs/development/ocaml-modules/telegraml/default.nix
new file mode 100644
index 0000000000000..b6f5f69b876fb
--- /dev/null
+++ b/pkgs/development/ocaml-modules/telegraml/default.nix
@@ -0,0 +1,34 @@
+{ batteries
+, buildDunePackage
+, cohttp-lwt-unix
+, fetchFromGitHub
+, lib
+, logs
+, yojson
+}:
+
+buildDunePackage rec {
+  pname = "telegraml";
+  version = "unstable-2021-06-17";
+
+  src = fetchFromGitHub {
+    owner = "nv-vn";
+    repo = "TelegraML";
+    rev = "3e28933a287e5eacd34c46b434c487f155397abc";
+    sha256 = "sha256-2bMHARatwl8Zl/fWppvwbH6Ut+igJVKzwyQb8Q4gem4=";
+  };
+
+  propagatedBuildInputs = [
+    batteries
+    cohttp-lwt-unix
+    logs
+    yojson
+  ];
+
+  meta = with lib; {
+    description = "An OCaml library implementing the Telegram bot API";
+    homepage = "https://github.com/nv-vn/TelegraML/";
+    license = licenses.mit;
+    maintainers = with maintainers; [ superherointj ];
+  };
+}