mirror of https://gitlab.crans.org/nounous/nixos
24 lines
383 B
Nix
24 lines
383 B
Nix
{
|
|
belenios,
|
|
belenios-lib,
|
|
belenios-platform,
|
|
belenios-platform-native,
|
|
ocamlPackages
|
|
}:
|
|
|
|
ocamlPackages.buildDunePackage {
|
|
pname = "belenios-tool";
|
|
inherit (belenios) version src;
|
|
|
|
propagatedBuildInputs =
|
|
[
|
|
belenios-lib
|
|
belenios-platform
|
|
belenios-platform-native
|
|
]
|
|
++ (with ocamlPackages; [
|
|
cmdliner
|
|
cohttp-lwt-unix
|
|
]);
|
|
}
|