nixpkgs/pkgs/development/ocaml-modules/awa/mirage.nix

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

18 lines
320 B
Nix
Raw Normal View History

2021-01-16 13:24:58 +01:00
{ buildDunePackage, awa
, cstruct, mtime, lwt, mirage-flow, mirage-clock, logs
2022-06-25 18:41:04 +02:00
, duration, mirage-time
2021-01-16 13:24:58 +01:00
}:
buildDunePackage {
pname = "awa-mirage";
2022-06-25 18:41:04 +02:00
inherit (awa) version src;
2021-01-16 13:24:58 +01:00
propagatedBuildInputs = [
awa cstruct mtime lwt mirage-flow mirage-clock logs
2022-06-25 18:41:04 +02:00
duration mirage-time
2021-01-16 13:24:58 +01:00
];
inherit (awa) meta;
}