nixpkgs/pkgs/development/ocaml-modules/mirage-time/default.nix

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

25 lines
622 B
Nix
Raw Normal View History

2023-03-10 19:51:03 +00:00
{ lib, buildDunePackage, fetchurl, lwt }:
buildDunePackage rec {
2023-03-10 19:51:03 +00:00
minimalOCamlVersion = "4.08";
pname = "mirage-time";
version = "3.0.0";
2023-03-10 19:51:03 +00:00
duneVersion = "3";
2020-12-05 16:27:26 +00:00
src = fetchurl {
url = "https://github.com/mirage/mirage-time/releases/download/v${version}/mirage-time-v${version}.tbz";
2023-03-10 19:51:03 +00:00
hash = "sha256-DUCUm1jix+i3YszIzgZjRQRiM8jJXQ49F6JC/yicvXw=";
};
2023-03-10 19:51:03 +00:00
propagatedBuildInputs = [ lwt ];
meta = with lib; {
homepage = "https://github.com/mirage/mirage-time";
description = "Time operations for MirageOS";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
};
}