2022-11-21 17:40:18 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl, extlib, lutils, rdbg }:
|
2021-10-01 09:20:50 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "lustre-v6";
|
|
|
|
version = "6.103.3";
|
|
|
|
|
|
|
|
useDune2 = true;
|
|
|
|
|
|
|
|
minimalOCamlVersion = "4.05";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/lustre-v6.6.103.3.tgz";
|
|
|
|
sha512 = "8d452184ee68edda1b5a50717e6a5b13fb21f9204634fc5898280e27a1d79c97a6e7cc04424fc22f34cdd02ed3cc8774dca4f982faf342980b5f9fe0dc1a017d";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2022-11-21 17:40:18 +00:00
|
|
|
extlib
|
2021-10-01 09:20:50 +00:00
|
|
|
lutils
|
|
|
|
rdbg
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Lustre V6 compiler";
|
2022-05-18 14:49:53 +00:00
|
|
|
homepage = "https://www-verimag.imag.fr/lustre-v6.html";
|
2021-10-01 09:20:50 +00:00
|
|
|
license = lib.licenses.cecill21;
|
|
|
|
maintainers = [ lib.maintainers.delta ];
|
2022-05-18 14:49:53 +00:00
|
|
|
mainProgram = "lv6";
|
2021-10-01 09:20:50 +00:00
|
|
|
};
|
|
|
|
}
|