about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-12-05 17:27:44 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2020-12-08 17:19:48 +0100
commit30487789abe79e3ffe53faea02b8998e9b755ccc (patch)
treefb0caa896a6236018a89e7bcaf34910f53843e90 /pkgs/development/ocaml-modules
parentbee0a512d0873d56d4860fcbc3109e7263e828d9 (diff)
downloadnixlib-30487789abe79e3ffe53faea02b8998e9b755ccc.tar
nixlib-30487789abe79e3ffe53faea02b8998e9b755ccc.tar.gz
nixlib-30487789abe79e3ffe53faea02b8998e9b755ccc.tar.bz2
nixlib-30487789abe79e3ffe53faea02b8998e9b755ccc.tar.lz
nixlib-30487789abe79e3ffe53faea02b8998e9b755ccc.tar.xz
nixlib-30487789abe79e3ffe53faea02b8998e9b755ccc.tar.zst
nixlib-30487789abe79e3ffe53faea02b8998e9b755ccc.zip
ocamlPackages.duration: use Dune 2
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/duration/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/duration/default.nix b/pkgs/development/ocaml-modules/duration/default.nix
index 7b3c1c65fc80..a547a919c31d 100644
--- a/pkgs/development/ocaml-modules/duration/default.nix
+++ b/pkgs/development/ocaml-modules/duration/default.nix
@@ -1,16 +1,18 @@
-{ lib, buildDunePackage, fetchurl, alcotest }:
+{ lib, buildDunePackage, ocaml, fetchurl, alcotest }:
 
 buildDunePackage rec {
   pname = "duration";
   version = "0.1.3";
 
+  useDune2 = true;
+
   src = fetchurl {
     url = "https://github.com/hannesm/duration/releases/download/${version}/duration-${version}.tbz";
     sha256 = "0m9r0ayhpl98g9vdxrbjdcllns274jilic5v8xj1x7dphw21p95h";
   };
 
-  doCheck = true;
-  checkInputs = lib.optional doCheck alcotest;
+  doCheck = lib.versionAtLeast ocaml.version "4.05";
+  checkInputs = [ alcotest ];
 
   meta = {
     homepage = "https://github.com/hannesm/duration";