about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ounit2
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-10-25 15:23:31 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-11-05 21:09:18 +0100
commit8a88bac92b164558d330b40a34b86d9324ff5713 (patch)
tree1b8774172b651e80e3e2215e584a1ba36263bc1d /pkgs/development/ocaml-modules/ounit2
parentae179a485e1ef1d6b6e393600c6c46450daf46b2 (diff)
ocamlPackages.ounit2: 2.2.4 → 2.2.6
Diffstat (limited to 'pkgs/development/ocaml-modules/ounit2')
-rw-r--r--pkgs/development/ocaml-modules/ounit2/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/ounit2/default.nix b/pkgs/development/ocaml-modules/ounit2/default.nix
index 0b68609584d4a..f1358760696e0 100644
--- a/pkgs/development/ocaml-modules/ounit2/default.nix
+++ b/pkgs/development/ocaml-modules/ounit2/default.nix
@@ -1,19 +1,19 @@
-{ lib, ocaml, buildDunePackage, fetchurl, stdlib-shims, ncurses }:
+{ lib, ocaml, buildDunePackage, fetchurl, seq, stdlib-shims, ncurses }:
 
 buildDunePackage rec {
   minimumOCamlVersion = "4.04";
 
   pname = "ounit2";
-  version = "2.2.4";
+  version = "2.2.6";
 
   useDune2 = lib.versionAtLeast ocaml.version "4.08";
 
   src = fetchurl {
-    url = "https://github.com/gildor478/ounit/releases/download/v${version}/ounit-v${version}.tbz";
-    sha256 = "0i9kiqbf2dp12c4qcvbn4abdpdp6h4g5z54ycsh0q8jpv6jnkh5m";
+    url = "https://github.com/gildor478/ounit/releases/download/v${version}/ounit-${version}.tbz";
+    sha256 = "sha256-BpD7Hg6QoY7tXDVms8wYJdmLDox9UbtrhGyVxFphWRM=";
   };
 
-  propagatedBuildInputs = [ stdlib-shims ];
+  propagatedBuildInputs = [ seq stdlib-shims ];
 
   doCheck = true;
   checkInputs = lib.optional (lib.versionOlder ocaml.version "4.07") ncurses;