mirror of https://gitlab.crans.org/nounous/nixos
29 lines
466 B
Nix
29 lines
466 B
Nix
{
|
|
fetchFromGitLab,
|
|
ocamlPackages,
|
|
belenios-server,
|
|
belenios-tool
|
|
}:
|
|
|
|
ocamlPackages.buildDunePackage rec {
|
|
pname = "belenios";
|
|
version = "3.1";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.inria.fr";
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-Mrx6AQakeBg6IeqNyDUZ5j6KaUGOh1AUfrLIxvDI45M=";
|
|
};
|
|
|
|
nativeBuildInputs = with ocamlPackages; [
|
|
odoc
|
|
];
|
|
|
|
buildInputs = [
|
|
belenios-server
|
|
belenios-tool
|
|
];
|
|
}
|