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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
625 B
Nix
Raw Normal View History

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";
2022-03-21 08:02:32 +00:00
version = "0.2.0";
2020-04-08 06:16:51 +00:00
2020-12-05 16:27:44 +00:00
useDune2 = true;
2020-04-08 06:16:51 +00:00
src = fetchurl {
url = "https://github.com/hannesm/duration/releases/download/${version}/duration-${version}.tbz";
2022-03-21 08:02:32 +00:00
sha256 = "sha256-rRT7daWm9z//fvFyEXiSXuVVzw8jsj46sykYS8DBzmk=";
2020-04-08 06:16:51 +00:00
};
2022-08-23 06:04:50 +00:00
doCheck = lib.versionAtLeast ocaml.version "4.08";
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 ];
};
}