Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 29 lines 919 B view raw
1{ lib, buildDunePackage, fetchurl, num, lutils, ounit}: 2 3buildDunePackage rec { 4 pname = "rdbg"; 5 version = "1.199.0"; 6 7 minimalOCamlVersion = "4.08"; 8 9 src = fetchurl { 10 url = "http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/rdbg.v${version}.tgz"; 11 hash = "sha512:6076eaa3608a313f8ac71a4f5aa4fcc64aeb0c646d581e5035110d4c80f94de34f2ba26f90a9a1e92a7f788c9e799f1f7b0e3728c853a21983ad732f0ee60352"; 12 }; 13 14 buildInputs = [ 15 num 16 ounit 17 ]; 18 19 propagatedBuildInputs = [ 20 lutils 21 ]; 22 23 meta = with lib; { 24 homepage = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/rdbg"; 25 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)"; 26 license = lib.licenses.cecill21; 27 maintainers = [ lib.maintainers.delta ]; 28 }; 29}