summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/alcotest
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2015-10-13 03:46:01 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-10-13 06:14:25 +0200
commitc400e81b81c9454944708080e036a074f3cf76d9 (patch)
treed1079b1b4809f7fdedcf83c3139ba624d87bb089 /pkgs/development/ocaml-modules/alcotest
parent4fa4f6f8413f7c8c56dca901c0f973e149449703 (diff)
downloadnixlib-c400e81b81c9454944708080e036a074f3cf76d9.tar
nixlib-c400e81b81c9454944708080e036a074f3cf76d9.tar.gz
nixlib-c400e81b81c9454944708080e036a074f3cf76d9.tar.bz2
nixlib-c400e81b81c9454944708080e036a074f3cf76d9.tar.lz
nixlib-c400e81b81c9454944708080e036a074f3cf76d9.tar.xz
nixlib-c400e81b81c9454944708080e036a074f3cf76d9.tar.zst
nixlib-c400e81b81c9454944708080e036a074f3cf76d9.zip
ocaml-alcotest: 0.3.2 -> 0.4.5
Diffstat (limited to 'pkgs/development/ocaml-modules/alcotest')
-rw-r--r--pkgs/development/ocaml-modules/alcotest/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/ocaml-modules/alcotest/default.nix b/pkgs/development/ocaml-modules/alcotest/default.nix
index 68edfca25a8a..ddc710bc7ed2 100644
--- a/pkgs/development/ocaml-modules/alcotest/default.nix
+++ b/pkgs/development/ocaml-modules/alcotest/default.nix
@@ -1,18 +1,18 @@
-{stdenv, buildOcaml, fetchurl, ounit, re, cmdliner}:
+{ stdenv, buildOcaml, fetchzip, cmdliner, stringext }:
 
 buildOcaml rec {
   name = "alcotest";
-  version = "0.3.1";
+  version = "0.4.5";
 
-  src = fetchurl {
-    url = "https://github.com/samoht/alcotest/archive/${version}.tar.gz";
-    sha256 = "a0e6c9a33c59b206ecc949655fa6e17bdd1078c8b610b14d8f6f0f1b489b0b43";
+  src = fetchzip {
+    url = "https://github.com/mirage/alcotest/archive/${version}.tar.gz";
+    sha256 = "1wcn9hkjf4cbnrz99w940qfjpi0lvd8v63yxwpnafkff871dwk6k";
   };
 
-  propagatedBuildInputs = [ ounit re cmdliner ];
+  propagatedBuildInputs = [ cmdliner stringext ];
 
   meta = with stdenv.lib; {
-    homepage = https://github.com/samoht/alcotest;
+    homepage = https://github.com/mirage/alcotest;
     description = "A lightweight and colourful test framework";
     license = stdenv.lib.licenses.isc;
     maintainers = [ maintainers.ericbmerritt ];