about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/atdgen
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-04-23 10:50:30 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-04-29 09:38:28 +0200
commitae9b63301bad24b1ebebf6365e5201a8a775b395 (patch)
treee721a361298ed044dfc09d2936049623ea92d81d /pkgs/development/ocaml-modules/atdgen
parent1904202908ab20a825c5bf73c2eb4dd28a2247cc (diff)
ocamlPackages.atdgen-codec-runtime: init at 2.4.1
Diffstat (limited to 'pkgs/development/ocaml-modules/atdgen')
-rw-r--r--pkgs/development/ocaml-modules/atdgen/codec-runtime.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix b/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix
new file mode 100644
index 0000000000000..9ad64549ea3ff
--- /dev/null
+++ b/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix
@@ -0,0 +1,18 @@
+{ lib, buildDunePackage, fetchurl }:
+
+buildDunePackage rec {
+  pname = "atdgen-codec-runtime";
+  version = "2.4.1";
+
+  src = fetchurl {
+    url = "https://github.com/ahrefs/atd/releases/download/${version}/atdgen-codec-runtime-${version}.tbz";
+    sha256 = "sha256:16888rnvhgh5yxxsnzsj10g5pzs1l4dn27n23kk2f4641dn26s3a";
+  };
+
+  meta = {
+    description = "Runtime for atdgen generated bucklescript converters";
+    homepage = "https://github.com/ahrefs/atd";
+    maintainers = [ lib.maintainers.vbgl ];
+    license = lib.licenses.mit;
+  };
+}