about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lambdapi
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-09-05 16:54:37 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-09-18 15:03:10 +0200
commitaf34e3be8c7d11b89779ccb5617c0c5f843dda6b (patch)
tree08375d082af43682560472682cfea0c24254f290 /pkgs/development/ocaml-modules/lambdapi
parent6260b4f4285cefd8106bb9e21a9d9f8d6fba7fe0 (diff)
ocamlPackages.cmdliner: default to 1.1
ocamlPackages.alcotest: 1.5.0 → 1.6.0

ocamlPackages.crowbar: 0.2 → 0.2.1

ocamlPackages.dune-release: 1.5.1 → 1.6.2

ocamlPackages.functoria: 3.1.1 → 4.2.0

ocamlPackages.mirage: 3.10.7 → 4.2.0

ocamlPackages.irmin-pack: disable checks

ocamlPackages.mdx: disable checks

ocamlPackages.git-unix: mark as broken
Diffstat (limited to 'pkgs/development/ocaml-modules/lambdapi')
-rw-r--r--pkgs/development/ocaml-modules/lambdapi/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/lambdapi/default.nix b/pkgs/development/ocaml-modules/lambdapi/default.nix
index 5827c5d4b7a52..42238edcb312e 100644
--- a/pkgs/development/ocaml-modules/lambdapi/default.nix
+++ b/pkgs/development/ocaml-modules/lambdapi/default.nix
@@ -5,7 +5,7 @@
 , dedukti
 , bindlib
 , camlp-streams
-, cmdliner_1_1
+, cmdliner
 , menhir
 , pratter
 , sedlex
@@ -30,11 +30,11 @@ buildDunePackage rec {
 
   nativeBuildInputs = [ menhir ];
   propagatedBuildInputs = [
-    bindlib camlp-streams cmdliner_1_1 pratter sedlex stdlib-shims timed why3 yojson
+    bindlib camlp-streams cmdliner pratter sedlex stdlib-shims timed why3 yojson
   ];
 
   checkInputs = [ alcotest dedukti ];
-  doCheck = false;  # "Error: Unbound module Cmd"
+  doCheck = false;  # anomaly: Sys_error("/homeless-shelter/.why3.conf: No such file or directory")
 
   meta = with lib; {
     homepage = "https://github.com/Deducteam/lambdapi";