ocamlPackages.timed: init at 1.1

This commit is contained in:
Ben Darwin 2022-09-08 20:25:35 -04:00 committed by Vincent Laporte
parent 499a95706f
commit 4fe8af2162
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, fetchFromGitHub
, ocaml
, buildDunePackage
}:
buildDunePackage rec {
version = "1.1";
pname = "timed";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "rlepigre";
repo = "ocaml-${pname}";
rev = version;
sha256 = "sha256-wUoI9j/j0IGYW2NfJHmyR2XEYfYejyoYLWnKsuWdFas=";
};
doCheck = true;
meta = with lib; {
description = "Timed references for imperative state";
homepage = "https://github.com/rlepigre/ocaml-timed";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}

View File

@ -1227,6 +1227,8 @@ let
tcpip = callPackage ../development/ocaml-modules/tcpip { };
timed = callPackage ../development/ocaml-modules/timed { };
tiny_httpd = callPackage ../development/ocaml-modules/tiny_httpd { };
tsort = callPackage ../development/ocaml-modules/tsort { };