Skip to content

Commit

Permalink
ocamlPackages.duration: use Dune 2
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Dec 8, 2020
1 parent bee0a51 commit 3048778
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions 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";
Expand Down

0 comments on commit 3048778

Please sign in to comment.