22 lines
256 B
Nix
22 lines
256 B
Nix
|
|
{
|
||
|
|
buildDunePackage,
|
||
|
|
cstruct,
|
||
|
|
async_unix,
|
||
|
|
async,
|
||
|
|
core,
|
||
|
|
}:
|
||
|
|
|
||
|
|
buildDunePackage {
|
||
|
|
pname = "cstruct-async";
|
||
|
|
inherit (cstruct) src version meta;
|
||
|
|
|
||
|
|
duneVersion = "3";
|
||
|
|
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
async_unix
|
||
|
|
async
|
||
|
|
cstruct
|
||
|
|
core
|
||
|
|
];
|
||
|
|
}
|