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.

16 lines
249 B
Nix
Raw Permalink Normal View History

{ buildDunePackage, cstruct, async_unix, async, core }:
buildDunePackage rec {
pname = "cstruct-async";
inherit (cstruct) src version meta;
2023-03-28 06:58:02 +00:00
duneVersion = "3";
propagatedBuildInputs = [
async_unix
async
cstruct
core
];
}