depot/third_party/nixpkgs/pkgs/development/ocaml-modules/lustre-v6/default.nix
Default email 4bac34ead1 Project import generated by Copybara.
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
2023-02-09 12:40:11 +01:00

28 lines
668 B
Nix

{ lib, buildDunePackage, fetchurl, extlib, lutils, rdbg, yaml }:
buildDunePackage rec {
pname = "lustre-v6";
version = "6.107.3";
minimalOCamlVersion = "4.12";
src = fetchurl {
url = "https://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/lustre-v6.v${version}.tgz";
hash = "sha256-z3cljDyxtotCGUIdYEzYu7fQd04RC3hhWpROcMh6Zng=";
};
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";
};
}