2023-01-23 06:03:27 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl, camlp-streams, num }:
|
2021-09-27 21:38:43 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "lutils";
|
2023-01-23 06:03:27 +00:00
|
|
|
version = "1.54.1";
|
2021-09-27 21:38:43 +00:00
|
|
|
|
|
|
|
minimalOCamlVersion = "4.02";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2023-01-23 06:03:27 +00:00
|
|
|
url = "http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/lutils.v${version}.tgz";
|
|
|
|
hash = "sha512:d3c3b80286b1aa236ba922d9e18a133721fc80126c8b89520fb811dce9400e217aaa75b5d49e03988be7f6bf5f2e1a391d02ceeaa5ec0a0cd5ce218083a29514";
|
2021-09-27 21:38:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2023-01-23 06:03:27 +00:00
|
|
|
camlp-streams num
|
2021-09-27 21:38:43 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/lutils/";
|
|
|
|
description = "Tools and libs shared by Verimag/synchronous tools (lustre, lutin, rdbg)";
|
2023-01-25 10:00:21 +00:00
|
|
|
changelog = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/lutils/-/releases/v${version}";
|
2021-09-27 21:38:43 +00:00
|
|
|
license = lib.licenses.cecill21;
|
2022-05-13 23:48:49 +00:00
|
|
|
mainProgram = "gnuplot-rif";
|
2021-09-27 21:38:43 +00:00
|
|
|
};
|
|
|
|
}
|