nixpkgs/pkgs/development/ocaml-modules/cstruct/async.nix
2023-03-28 11:26:16 +02:00

16 lines
254 B
Nix

{ lib, buildDunePackage, cstruct, async_unix, async, core }:
buildDunePackage rec {
pname = "cstruct-async";
inherit (cstruct) src version meta;
duneVersion = "3";
propagatedBuildInputs = [
async_unix
async
cstruct
core
];
}