2022-12-17 10:02:37 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl, extlib, lutils, rdbg, yaml }:
|
2021-10-01 09:20:50 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "lustre-v6";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "6.107.4";
|
2021-10-01 09:20:50 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
minimalOCamlVersion = "4.12";
|
2021-10-01 09:20:50 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-02-09 11:40:11 +00:00
|
|
|
url = "https://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/lustre-v6.v${version}.tgz";
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-baT5ZJtg5oFoJ5eHb3ISsmY6G31UG10KlNXC+ta+M1c=";
|
2021-10-01 09:20:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2022-11-21 17:40:18 +00:00
|
|
|
extlib
|
2021-10-01 09:20:50 +00:00
|
|
|
lutils
|
|
|
|
rdbg
|
2022-12-17 10:02:37 +00:00
|
|
|
yaml
|
2021-10-01 09:20:50 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Lustre V6 compiler";
|
2022-05-18 14:49:53 +00:00
|
|
|
homepage = "https://www-verimag.imag.fr/lustre-v6.html";
|
2022-12-17 10:02:37 +00:00
|
|
|
license = licenses.cecill21;
|
|
|
|
maintainers = with maintainers; [ delta wegank ];
|
2022-05-18 14:49:53 +00:00
|
|
|
mainProgram = "lv6";
|
2021-10-01 09:20:50 +00:00
|
|
|
};
|
|
|
|
}
|