about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/shared-memory-ring
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-06-24 06:26:47 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-07-01 05:49:03 +0100
commit6806e4e8b78eae240cb9e657b168c13dd58f9a3f (patch)
tree5701da2b32ea829241357cd67ba4beed262f389e /pkgs/development/ocaml-modules/shared-memory-ring
parent37c5406988c04cbd878bbdba90805c87182260fa (diff)
ocamlPackages.shared-memory-ring: 3.1.0 → 3.1.1
Diffstat (limited to 'pkgs/development/ocaml-modules/shared-memory-ring')
-rw-r--r--pkgs/development/ocaml-modules/shared-memory-ring/default.nix8
-rw-r--r--pkgs/development/ocaml-modules/shared-memory-ring/lwt.nix2
2 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/shared-memory-ring/default.nix b/pkgs/development/ocaml-modules/shared-memory-ring/default.nix
index 17dd6183c0da5..baeda2d1b1525 100644
--- a/pkgs/development/ocaml-modules/shared-memory-ring/default.nix
+++ b/pkgs/development/ocaml-modules/shared-memory-ring/default.nix
@@ -10,13 +10,11 @@
 
 buildDunePackage rec {
   pname = "shared-memory-ring";
-  version = "3.1.0";
-
-  useDune2 = true;
+  version = "3.1.1";
 
   src = fetchurl {
-    url = "https://github.com/mirage/shared-memory-ring/releases/download/v${version}/shared-memory-ring-v${version}.tbz";
-    sha256 = "06350ph3rdfvybi0cgs3h3rdkmjspk3c4375rxvbdg0kza1w22x1";
+    url = "https://github.com/mirage/shared-memory-ring/releases/download/v${version}/shared-memory-ring-${version}.tbz";
+    sha256 = "sha256-KW8grij/OAnFkdUdRRZF21X39DvqayzkTWeRKwF8uoU=";
   };
 
   nativeBuildInputs = [
diff --git a/pkgs/development/ocaml-modules/shared-memory-ring/lwt.nix b/pkgs/development/ocaml-modules/shared-memory-ring/lwt.nix
index 8f41253bab8e5..e3ae1ef2e3dc4 100644
--- a/pkgs/development/ocaml-modules/shared-memory-ring/lwt.nix
+++ b/pkgs/development/ocaml-modules/shared-memory-ring/lwt.nix
@@ -12,7 +12,7 @@
 buildDunePackage {
   pname = "shared-memory-ring-lwt";
 
-  inherit (shared-memory-ring) version src useDune2;
+  inherit (shared-memory-ring) version src;
 
   buildInputs = [
     ppx_cstruct