forked from mirrors/nixpkgs
ocamlPackages.mirage-clock: init at 3.0.1
This commit is contained in:
parent
ad098ac026
commit
d7ee3bc968
20
pkgs/development/ocaml-modules/mirage-clock/default.nix
Normal file
20
pkgs/development/ocaml-modules/mirage-clock/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ lib, buildDunePackage, fetchurl }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "mirage-clock";
|
||||
version = "3.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mirage/mirage-clock/releases/download/v${version}/mirage-clock-v${version}.tbz";
|
||||
sha256 = "12m2dph69r843clrbcgfjj2gcxmq2kdb7g5d91kfj16g13b0vsa3";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Libraries and module types for portable clocks";
|
||||
homepage = "https://github.com/mirage/mirage-clock";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -534,6 +534,8 @@ let
|
|||
|
||||
minisat = callPackage ../development/ocaml-modules/minisat { };
|
||||
|
||||
mirage-clock = callPackage ../development/ocaml-modules/mirage-clock { };
|
||||
|
||||
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
||||
|
||||
mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };
|
||||
|
|
Loading…
Reference in a new issue