Files
redianthus 281af84a01 owi: 0.2-unstable-2026-01-29 -> 0.2-unstable-2026-03-16
ocamlPackages.symex: 0.1 -> 0.2
ocamlPackages.smtml: 0.20.0 -> 0.24.0
2026-03-30 22:09:05 +02:00

34 lines
619 B
Nix

{
lib,
buildDunePackage,
fetchFromGitHub,
fmt,
prelude,
smtml,
}:
buildDunePackage (finalAttrs: {
pname = "symex";
version = "0.2";
src = fetchFromGitHub {
owner = "ocamlpro";
repo = "symex";
tag = finalAttrs.version;
hash = "sha256-KX+OHiCsAHEw0kBWLUDVakIcshUNXLYjm2f2le75Mj8=";
};
propagatedBuildInputs = [
fmt
prelude
smtml
];
meta = {
description = "Primitives to write symbolic execution engines";
homepage = "https://github.com/ocamlpro/symex";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ redianthus ];
};
})