nixpkgs/pkgs/development/ocaml-modules/duration/default.nix

25 lines
626 B
Nix
Raw Normal View History

2020-12-05 19:27:44 +03:00
{ lib, buildDunePackage, ocaml, fetchurl, alcotest }:
2020-04-08 09:16:51 +03:00
buildDunePackage rec {
pname = "duration";
version = "0.1.3";
2020-12-05 19:27:44 +03:00
useDune2 = true;
2020-04-08 09:16:51 +03:00
src = fetchurl {
url = "https://github.com/hannesm/duration/releases/download/${version}/duration-${version}.tbz";
sha256 = "0m9r0ayhpl98g9vdxrbjdcllns274jilic5v8xj1x7dphw21p95h";
};
2020-12-05 19:27:44 +03:00
doCheck = lib.versionAtLeast ocaml.version "4.05";
checkInputs = [ alcotest ];
2020-04-08 09:16:51 +03:00
meta = {
homepage = "https://github.com/hannesm/duration";
description = "Conversions to various time units";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}