mirror of https://gitlab.crans.org/nounous/nixos
28 lines
395 B
Nix
28 lines
395 B
Nix
{
|
|
belenios,
|
|
belenios-platform,
|
|
ocamlPackages,
|
|
libsodium
|
|
}:
|
|
|
|
ocamlPackages.buildDunePackage {
|
|
pname = "belenios-platform-native";
|
|
inherit (belenios) version src;
|
|
|
|
nativeBuildInputs = with ocamlPackages; [
|
|
odoc
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
belenios-platform
|
|
libsodium
|
|
]
|
|
++ (with ocamlPackages; [
|
|
lwt
|
|
cryptokit
|
|
digestif
|
|
zarith
|
|
]);
|
|
}
|