ocamlPackages.mimic: init at 0.0.1

This commit is contained in:
sternenseemann 2021-01-15 10:54:17 +01:00 committed by Vincent Laporte
parent 3bdf95ceb5
commit 2b014ef903
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ lib, buildDunePackage, fetchurl
, fmt, mirage-flow, result, rresult, cstruct, logs, ke
, alcotest, alcotest-lwt, bigstringaf, bigarray-compat
}:
buildDunePackage rec {
pname = "mimic";
version = "0.0.1";
minimumOCamlVersion = "4.08";
useDune2 = true;
src = fetchurl {
url = "https://github.com/mirage/ocaml-git/releases/download/${pname}-v${version}/${pname}-${pname}-v${version}.tbz";
sha256 = "0j4l99sgm5mdmv67vakkz2pw45l6i89bpza88xqkgmskfk50c5pk";
};
# don't install changelogs for other packages
postPatch = ''
rm -f CHANGES.md CHANGES.carton.md
'';
propagatedBuildInputs = [
fmt
mirage-flow
result
rresult
cstruct
logs
];
doCheck = true;
checkInputs = [
alcotest
alcotest-lwt
bigstringaf
bigarray-compat
ke
];
meta = with lib; {
description = "A simple protocol dispatcher";
license = licenses.isc;
homepage = "https://github.com/mirage/ocaml-git";
maintainers = [ maintainers.sternenseemann ];
};
}

View file

@ -580,6 +580,8 @@ let
mezzo = callPackage ../development/compilers/mezzo { };
mimic = callPackage ../development/ocaml-modules/mimic { };
minisat = callPackage ../development/ocaml-modules/minisat { };
mirage = callPackage ../development/ocaml-modules/mirage { };