about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/duration/default.nix
blob: a547a919c31d3f20148704cfeb8a75e93b5ffc7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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 = lib.versionAtLeast ocaml.version "4.05";
  checkInputs = [ alcotest ];

  meta = {
    homepage = "https://github.com/hannesm/duration";
    description = "Conversions to various time units";
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.vbgl ];
  };

}