nixpkgs/pkgs/development/ocaml-modules/duration/default.nix
2020-04-14 06:25:03 +02:00

23 lines
581 B
Nix

{ lib, buildDunePackage, fetchurl, alcotest }:
buildDunePackage rec {
pname = "duration";
version = "0.1.3";
src = fetchurl {
url = "https://github.com/hannesm/duration/releases/download/${version}/duration-${version}.tbz";
sha256 = "0m9r0ayhpl98g9vdxrbjdcllns274jilic5v8xj1x7dphw21p95h";
};
doCheck = true;
checkInputs = lib.optional doCheck alcotest;
meta = {
homepage = "https://github.com/hannesm/duration";
description = "Conversions to various time units";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}