blob: b9ab401cefbb951856f5a4c004f1ac3243b10e02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
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 ];
};
})
|