about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2024-03-11 04:29:23 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2024-03-11 04:31:02 +0100
commitaae884c8a6531ba617ee06e1bdf325a9e8734c77 (patch)
treea5d3d7cdc54cbd0ea6d4c585e83981972e2c9a4b /pkgs/development/ocaml-modules
parent432b72a4c9c41c4898a0deff7413588f84631499 (diff)
liquidsoap: 2.2.3 → 2.2.4
ocamlPackages.cry: 1.0.1 → 1.0.2

Support for gstreamer in liquidsoap has been removed in nixpkgs as:
  - it does not build (see: liquidsoap PR 3769);
  - it is deprecated.
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/cry/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/cry/default.nix b/pkgs/development/ocaml-modules/cry/default.nix
index 8e475a7987ccf..e4339ef7563ba 100644
--- a/pkgs/development/ocaml-modules/cry/default.nix
+++ b/pkgs/development/ocaml-modules/cry/default.nix
@@ -2,17 +2,17 @@
 
 buildDunePackage rec {
   pname = "cry";
-  version = "1.0.1";
+  version = "1.0.2";
 
   src = fetchFromGitHub {
     owner = "savonet";
     repo = "ocaml-cry";
     rev = "v${version}";
-    sha256 = "sha256-wn9hLqbydzFTdYsJ1e76dmDLtwcZ7CGjbzFe5o9veYQ=";
+    hash = "sha256-wtilYOUOHElW8ZVxolMNomvT//ho2tACmoubEvU2bpQ=";
   };
 
   postPatch = ''
-    substituteInPlace src/dune --replace bytes ""
+    substituteInPlace src/dune --replace-warn bytes ""
   '';
 
   minimalOCamlVersion = "4.12";