22 lines
564 B
Nix
22 lines
564 B
Nix
{ lib, buildDunePackage, fetchurl }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mirage-clock";
|
|
version = "4.2.0";
|
|
|
|
minimalOCamlVersion = "4.06";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/mirage-clock/releases/download/v${version}/mirage-clock-${version}.tbz";
|
|
hash = "sha256-+hfRXVviPHm6dB9ffLiO1xEt4WpEEM6oHHG5gIaImEc=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Libraries and module types for portable clocks";
|
|
homepage = "https://github.com/mirage/mirage-clock";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|
|
|
|
|