Files
nixpkgs/pkgs/development/ocaml-modules/cstruct/async.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
256 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
cstruct,
async_unix,
async,
core,
}:
buildDunePackage {
pname = "cstruct-async";
inherit (cstruct) src version meta;
duneVersion = "3";
propagatedBuildInputs = [
async_unix
async
cstruct
core
];
}