Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
699 B
Nix
40 lines
699 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchurl,
|
|
extlib,
|
|
lutils,
|
|
rdbg,
|
|
yaml,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
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${version}.tgz";
|
|
hash = "sha256-baT5ZJtg5oFoJ5eHb3ISsmY6G31UG10KlNXC+ta+M1c=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
extlib
|
|
lutils
|
|
rdbg
|
|
yaml
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Lustre V6 compiler";
|
|
homepage = "https://www-verimag.imag.fr/lustre-v6.html";
|
|
license = licenses.cecill21;
|
|
maintainers = with maintainers; [
|
|
delta
|
|
wegank
|
|
];
|
|
mainProgram = "lv6";
|
|
};
|
|
}
|