summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-03-29 08:17:54 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-03-29 09:47:08 +0200
commit1c48b0f89609e7dc242d0ad20477cb9355ea3bf3 (patch)
treef93621b14c4bbd37c5b07ed9b22bbdf988c3046d /pkgs/development/ocaml-modules
parent8d6e10dfb38721622e3092d4ab4e9dafe5eab233 (diff)
downloadnixpkgs-1c48b0f89609e7dc242d0ad20477cb9355ea3bf3.tar
nixpkgs-1c48b0f89609e7dc242d0ad20477cb9355ea3bf3.tar.gz
nixpkgs-1c48b0f89609e7dc242d0ad20477cb9355ea3bf3.tar.bz2
nixpkgs-1c48b0f89609e7dc242d0ad20477cb9355ea3bf3.tar.lz
nixpkgs-1c48b0f89609e7dc242d0ad20477cb9355ea3bf3.tar.xz
nixpkgs-1c48b0f89609e7dc242d0ad20477cb9355ea3bf3.tar.zst
nixpkgs-1c48b0f89609e7dc242d0ad20477cb9355ea3bf3.zip
ocamlPackages.mimic: remove spurious dependencies
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/mimic/default.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/development/ocaml-modules/mimic/default.nix b/pkgs/development/ocaml-modules/mimic/default.nix
index 69d6d97da5e..348a1b39cdd 100644
--- a/pkgs/development/ocaml-modules/mimic/default.nix
+++ b/pkgs/development/ocaml-modules/mimic/default.nix
@@ -1,14 +1,13 @@
 { lib, buildDunePackage, fetchurl
-, fmt, mirage-flow, result, rresult, cstruct, logs, ke, lwt
-, alcotest, alcotest-lwt, bigstringaf, bigarray-compat
+, fmt, mirage-flow, cstruct, logs, ke, lwt
+, alcotest, alcotest-lwt, bigstringaf
 }:
 
 buildDunePackage rec {
   pname = "mimic";
   version = "0.0.4";
 
-  minimumOCamlVersion = "4.08";
-  useDune2 = true;
+  minimalOCamlVersion = "4.08";
 
   src = fetchurl {
     url = "https://github.com/dinosaure/mimic/releases/download/${version}/mimic-${version}.tbz";
@@ -19,8 +18,6 @@ buildDunePackage rec {
     fmt
     lwt
     mirage-flow
-    result
-    rresult
     logs
   ];
 
@@ -29,7 +26,6 @@ buildDunePackage rec {
     alcotest
     alcotest-lwt
     bigstringaf
-    bigarray-compat
     cstruct
     ke
   ];