about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/lustre-v6/default.nix
blob: 34feaf85c3f385a1eee109affcd0c615dfeee307 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, buildDunePackage, fetchurl, ocaml_extlib, lutils, rdbg }:

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 = [
    ocaml_extlib
    lutils
    rdbg
  ];

  meta = with lib; {
    homepage = "http://www-verimag.imag.fr/lustre-v6.html";
    description = "Lustre V6 compiler";
    license = lib.licenses.cecill21;
    maintainers = [ lib.maintainers.delta ];
  };
}