2020-12-05 16:27:44 +00:00
|
|
|
{ lib, buildDunePackage, ocaml, fetchurl, alcotest }:
|
2020-04-08 06:16:51 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "duration";
|
2023-03-10 19:51:31 +00:00
|
|
|
version = "0.2.1";
|
2020-04-08 06:16:51 +00:00
|
|
|
|
2023-03-10 19:51:31 +00:00
|
|
|
duneVersion = "3";
|
2020-12-05 16:27:44 +00:00
|
|
|
|
2020-04-08 06:16:51 +00:00
|
|
|
src = fetchurl {
|
2023-03-10 19:51:31 +00:00
|
|
|
url = "https://github.com/hannesm/duration/releases/download/v${version}/duration-${version}.tbz";
|
|
|
|
hash = "sha256-xzjB84z7mYIMEhzT3fgZ3ksiKPDVDqy9HMPOmefHHis=";
|
2020-04-08 06:16:51 +00:00
|
|
|
};
|
|
|
|
|
2022-08-23 06:04:50 +00:00
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
2022-03-01 15:42:22 +00:00
|
|
|
checkInputs = [ alcotest ];
|
2020-04-08 06:16:51 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/hannesm/duration";
|
|
|
|
description = "Conversions to various time units";
|
|
|
|
license = lib.licenses.isc;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|