nixpkgs/pkgs/development/ocaml-modules/lustre-v6/default.nix
2026-05-12 13:36:46 -05:00

39 lines
718 B
Nix

{
lib,
buildDunePackage,
fetchurl,
extlib,
lutils,
rdbg,
yaml,
}:
buildDunePackage (finalAttrs: {
pname = "lustre-v6";
version = "6.107.4";
minimalOCamlVersion = "4.12";
src = fetchurl {
url = "https://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/lustre-v6.v${finalAttrs.version}.tgz";
hash = "sha256-baT5ZJtg5oFoJ5eHb3ISsmY6G31UG10KlNXC+ta+M1c=";
};
propagatedBuildInputs = [
extlib
lutils
rdbg
yaml
];
meta = {
description = "Lustre V6 compiler";
homepage = "https://www-verimag.imag.fr/lustre-v6.html";
license = lib.licenses.cecill21;
maintainers = with lib.maintainers; [
delta
wegank
];
mainProgram = "lv6";
};
})