about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2021-06-07 16:51:13 -0300
committerVincent Laporte <vbgl@users.noreply.github.com>2021-06-17 11:46:23 +0200
commit930ccdeadea6093e0f425636d1240ba365a403c6 (patch)
treea12f049a9a0b4184d0e5e7e5f80c8ba459b5d6b4 /pkgs/development/ocaml-modules
parentc2c4aa36db4902afcfe150379d93846a11711dba (diff)
downloadnixlib-930ccdeadea6093e0f425636d1240ba365a403c6.tar
nixlib-930ccdeadea6093e0f425636d1240ba365a403c6.tar.gz
nixlib-930ccdeadea6093e0f425636d1240ba365a403c6.tar.bz2
nixlib-930ccdeadea6093e0f425636d1240ba365a403c6.tar.lz
nixlib-930ccdeadea6093e0f425636d1240ba365a403c6.tar.xz
nixlib-930ccdeadea6093e0f425636d1240ba365a403c6.tar.zst
nixlib-930ccdeadea6093e0f425636d1240ba365a403c6.zip
ocamlPackages.cstruct-async: init 6.0.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/cstruct/async.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/cstruct/async.nix b/pkgs/development/ocaml-modules/cstruct/async.nix
new file mode 100644
index 000000000000..579f12776c08
--- /dev/null
+++ b/pkgs/development/ocaml-modules/cstruct/async.nix
@@ -0,0 +1,11 @@
+{ lib, buildDunePackage, cstruct, async_unix }:
+
+buildDunePackage rec {
+  pname = "cstruct-async";
+  inherit (cstruct) src version meta useDune2;
+
+  propagatedBuildInputs = [
+    async_unix
+    cstruct
+  ];
+}