ocamlPackages.frama-c-lreplay: init at 0.1.1 (#471626)

This commit is contained in:
Vincent Laporte
2025-12-31 12:32:17 +00:00
committed by GitHub
2 changed files with 32 additions and 0 deletions
@@ -0,0 +1,30 @@
{
lib,
buildDunePackage,
dune-site,
fetchzip,
frama-c,
menhir,
}:
buildDunePackage (finalAttrs: {
pname = "lreplay";
version = "0.1.1";
src = fetchzip {
url = "https://git.frama-c.com/pub/ltest/lreplay/-/archive/${finalAttrs.version}/lreplay-${finalAttrs.version}.tar.bz2";
hash = "sha256-FSICl9x/uL4hMVFz5Ef7NYKATZDdtYY9DRU0AZKSDD8=";
};
nativeBuildInputs = [
menhir
];
meta = {
description = "Lreplay plugin of Frama-C, part of the LTest suite";
homepage = "https://frama-c.com/fc-plugins/ltest.html";
license = lib.licenses.lgpl2;
maintainers = with lib.maintainers; [ redianthus ];
mainProgram = "lreplay";
};
})
+2
View File
@@ -1093,6 +1093,8 @@ let
logs-syslog = callPackage ../development/ocaml-modules/logs-syslog { };
lreplay = callPackage ../development/ocaml-modules/lreplay { };
lru = callPackage ../development/ocaml-modules/lru { };
lsp = callPackage ../development/ocaml-modules/ocaml-lsp/lsp.nix { };