python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / lustre-v6 / default.nix
blob3cc7a25a36aa630cbb4d406235370334434b3d1b
1 { lib, buildDunePackage, fetchurl, ocaml_extlib, lutils, rdbg }:
3 buildDunePackage rec {
4   pname = "lustre-v6";
5   version = "6.103.3";
7   useDune2 = true;
9   minimalOCamlVersion = "4.05";
11   src = fetchurl {
12     url = "http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/lustre-v6.6.103.3.tgz";
13     sha512 = "8d452184ee68edda1b5a50717e6a5b13fb21f9204634fc5898280e27a1d79c97a6e7cc04424fc22f34cdd02ed3cc8774dca4f982faf342980b5f9fe0dc1a017d";
14   };
16   propagatedBuildInputs = [
17     ocaml_extlib
18     lutils
19     rdbg
20   ];
22   meta = with lib; {
23     description = "Lustre V6 compiler";
24     homepage = "https://www-verimag.imag.fr/lustre-v6.html";
25     license = lib.licenses.cecill21;
26     maintainers = [ lib.maintainers.delta ];
27     mainProgram = "lv6";
28   };