ocamlPackages.cstruct-async: init 6.0.0

This commit is contained in:
superherointj
2021-06-17 11:46:23 +02:00
committed by Vincent Laporte
parent c2c4aa36db
commit 930ccdeade
2 changed files with 13 additions and 0 deletions
@@ -0,0 +1,11 @@
{ lib, buildDunePackage, cstruct, async_unix }:
buildDunePackage rec {
pname = "cstruct-async";
inherit (cstruct) src version meta useDune2;
propagatedBuildInputs = [
async_unix
cstruct
];
}
+2
View File
@@ -217,6 +217,8 @@ let
cstruct = callPackage ../development/ocaml-modules/cstruct {};
cstruct-async = callPackage ../development/ocaml-modules/cstruct/async.nix { };
cstruct-lwt = callPackage ../development/ocaml-modules/cstruct/lwt.nix { };
cstruct-sexp = callPackage ../development/ocaml-modules/cstruct/sexp.nix {};