My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/mirage-clock/default.nix

24 lines
588 B

{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "mirage-clock";
version = "3.1.0";
useDune2 = true;
minimumOCamlVersion = "4.06";
src = fetchurl {
url = "https://github.com/mirage/mirage-clock/releases/download/v${version}/mirage-clock-v${version}.tbz";
sha256 = "0cqa07aqkamw0dvis1fl46brvk81zvb92iy5076ik62gv9n5a0mn";
};
meta = {
description = "Libraries and module types for portable clocks";
homepage = "https://github.com/mirage/mirage-clock";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}