1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5 num,
6 lutils,
7 ounit,
8}:
9
10buildDunePackage rec {
11 pname = "rdbg";
12 version = "1.199.0";
13
14 minimalOCamlVersion = "4.08";
15
16 src = fetchurl {
17 url = "http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/rdbg.v${version}.tgz";
18 hash = "sha512:6076eaa3608a313f8ac71a4f5aa4fcc64aeb0c646d581e5035110d4c80f94de34f2ba26f90a9a1e92a7f788c9e799f1f7b0e3728c853a21983ad732f0ee60352";
19 };
20
21 buildInputs = [
22 num
23 ounit
24 ];
25
26 propagatedBuildInputs = [
27 lutils
28 ];
29
30 meta = with lib; {
31 homepage = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/rdbg";
32 description = "Programmable debugger that targets reactive programs for which a rdbg-plugin exists. Currently two plugins exist : one for Lustre, and one for Lutin (nb: both are synchronous programming languages)";
33 license = lib.licenses.cecill21;
34 maintainers = [ lib.maintainers.delta ];
35 };
36}