ocamlPackages.mimic: remove spurious dependencies

This commit is contained in:
Vincent Laporte 2022-03-29 08:17:54 +02:00 committed by Vincent Laporte
parent 8d6e10dfb3
commit 1c48b0f896

View file

@ -1,14 +1,13 @@
{ lib, buildDunePackage, fetchurl { lib, buildDunePackage, fetchurl
, fmt, mirage-flow, result, rresult, cstruct, logs, ke, lwt , fmt, mirage-flow, cstruct, logs, ke, lwt
, alcotest, alcotest-lwt, bigstringaf, bigarray-compat , alcotest, alcotest-lwt, bigstringaf
}: }:
buildDunePackage rec { buildDunePackage rec {
pname = "mimic"; pname = "mimic";
version = "0.0.4"; version = "0.0.4";
minimumOCamlVersion = "4.08"; minimalOCamlVersion = "4.08";
useDune2 = true;
src = fetchurl { src = fetchurl {
url = "https://github.com/dinosaure/mimic/releases/download/${version}/mimic-${version}.tbz"; url = "https://github.com/dinosaure/mimic/releases/download/${version}/mimic-${version}.tbz";
@ -19,8 +18,6 @@ buildDunePackage rec {
fmt fmt
lwt lwt
mirage-flow mirage-flow
result
rresult
logs logs
]; ];
@ -29,7 +26,6 @@ buildDunePackage rec {
alcotest alcotest
alcotest-lwt alcotest-lwt
bigstringaf bigstringaf
bigarray-compat
cstruct cstruct
ke ke
]; ];