mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
16 lines
249 B
Nix
16 lines
249 B
Nix
{ buildDunePackage, cstruct, async_unix, async, core }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "cstruct-async";
|
|
inherit (cstruct) src version meta;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
async_unix
|
|
async
|
|
cstruct
|
|
core
|
|
];
|
|
}
|