summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-10-31 09:51:22 +0100
committerGitHub <noreply@github.com>2023-10-31 09:51:22 +0100
commit77eb94fa5c5ef665763d36ae5c5fea4b682c4353 (patch)
treeca84f978715545ccb9e831dbcae7e22828185b42 /pkgs/development/ocaml-modules
parent4b05ee3f056ae098eba6a4152bcc45098d0d6abf (diff)
downloadnixpkgs-77eb94fa5c5ef665763d36ae5c5fea4b682c4353.tar
nixpkgs-77eb94fa5c5ef665763d36ae5c5fea4b682c4353.tar.gz
nixpkgs-77eb94fa5c5ef665763d36ae5c5fea4b682c4353.tar.bz2
nixpkgs-77eb94fa5c5ef665763d36ae5c5fea4b682c4353.tar.lz
nixpkgs-77eb94fa5c5ef665763d36ae5c5fea4b682c4353.tar.xz
nixpkgs-77eb94fa5c5ef665763d36ae5c5fea4b682c4353.tar.zst
nixpkgs-77eb94fa5c5ef665763d36ae5c5fea4b682c4353.zip
wayland-proxy-virtwl: unstable-2023-08-13 -> unstable-2023-10-27 (#264161)
* ocamlPackages.wayland: 1.1 -> 2.0

* wayland-proxy-virtwl: unstable-2023-08-13 -> unstable-2023-10-27
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/wayland/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/development/ocaml-modules/wayland/default.nix b/pkgs/development/ocaml-modules/wayland/default.nix
index 9dea4a64a50..6c60458f966 100644
--- a/pkgs/development/ocaml-modules/wayland/default.nix
+++ b/pkgs/development/ocaml-modules/wayland/default.nix
@@ -2,28 +2,28 @@
 , buildDunePackage
 , fetchurl
 , xmlm
-, lwt
+, eio
 , logs
 , fmt
 , cstruct
 , cmdliner
-, alcotest-lwt
+, alcotest
+, eio_main
 }:
 
 buildDunePackage rec {
   pname = "wayland";
-  version = "1.1";
+  version = "2.0";
 
-  minimalOCamlVersion = "4.08";
-  duneVersion = "3";
+  minimalOCamlVersion = "5.0";
 
   src = fetchurl {
     url = "https://github.com/talex5/ocaml-wayland/releases/download/v${version}/wayland-${version}.tbz";
-    sha256 = "0b7czgh08i6xcx3fsz6vd19sfyngwi0i27jdzg8cnjgrgwnagv6d";
+    hash = "sha256-iCG1zk1tA7gdGGt78c3sQi0NN9Fh3HsCP4cy7Y3pg0s=";
   };
 
   propagatedBuildInputs = [
-    lwt
+    eio
     logs
     fmt
     cstruct
@@ -35,7 +35,8 @@ buildDunePackage rec {
   ];
 
   checkInputs = [
-    alcotest-lwt
+    alcotest
+    eio_main
   ];
   doCheck = true;