mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
29 lines
667 B
Nix
29 lines
667 B
Nix
{ lib, buildDunePackage, fetchurl, extlib, lutils, rdbg, yaml }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "lustre-v6";
|
|
version = "6.107.1";
|
|
|
|
minimalOCamlVersion = "4.12";
|
|
|
|
src = fetchurl {
|
|
url = "http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/lustre-v6.v${version}.tgz";
|
|
hash = "sha256-+OqDwUIiPrtJy1C3DmDNTrtsT8clKKcNWCev4TEMRBc=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|