python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-time / default.nix
blob1780ba05ac4702a127d1f9a09b0b86d742c26f3d
1 { lib, buildDunePackage, fetchurl, ocaml_lwt }:
3 buildDunePackage rec {
4   minimumOCamlVersion = "4.06";
6   pname = "mirage-time";
7   version = "3.0.0";
9   useDune2 = true;
11   src = fetchurl {
12     url = "https://github.com/mirage/mirage-time/releases/download/v${version}/mirage-time-v${version}.tbz";
13     sha256 = "sha256-DUCUm1jix+i3YszIzgZjRQRiM8jJXQ49F6JC/yicvXw=";
14   };
16   propagatedBuildInputs = [ ocaml_lwt ];
18   meta = with lib; {
19     homepage = "https://github.com/mirage/mirage-time";
20     description = "Time operations for MirageOS";
21     license = licenses.isc;
22     maintainers = with maintainers; [ sternenseemann ];
23   };