mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
16 lines
278 B
Nix
16 lines
278 B
Nix
{ buildDunePackage, awa
|
|
, cstruct, mtime, lwt, cstruct-unix, mirage-crypto-rng
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "awa-lwt";
|
|
|
|
inherit (awa) version src useDune2;
|
|
|
|
propagatedBuildInputs = [
|
|
awa cstruct mtime lwt cstruct-unix mirage-crypto-rng
|
|
];
|
|
|
|
inherit (awa) meta;
|
|
}
|