ocamlPackages.cstruct-async: init 6.0.0

This commit is contained in:
superherointj 2021-06-07 16:51:13 -03:00 committed by Vincent Laporte
parent c2c4aa36db
commit 930ccdeade
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ lib, buildDunePackage, cstruct, async_unix }:
buildDunePackage rec {
pname = "cstruct-async";
inherit (cstruct) src version meta useDune2;
propagatedBuildInputs = [
async_unix
cstruct
];
}

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 {};