python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / rdbg / default.nix
blob9b33678590d582f2f717711e1b87d036959c584d
1 { lib, buildDunePackage, fetchurl, num, lutils, ounit}:
3 buildDunePackage rec {
4   pname = "rdbg";
5   version = "1.196.12";
7   useDune2 = true;
9   minimalOCamlVersion = "4.07";
11   src = fetchurl {
12     url = "http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/rdbg.1.196.12.tgz";
13     sha512 = "8e88034b1eda8f1233b4990adc9746782148254c93d8d0c99c246c0d50f306eeb6aa4afcfca8834acb3e268860647f47a24cc6a2d29fb45cac11f098e2ede275";
14   };
16   buildInputs = [
17     num
18     ounit
19   ];
21   propagatedBuildInputs = [
22     lutils
23   ];
25   meta = with lib; {
26     homepage = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/rdbg";
27     description = "A 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)";
28     license = lib.licenses.cecill21;
29     maintainers = [ lib.maintainers.delta ];
30   };