ocamlPackages.dtools: init at 0.4.4

This commit is contained in:
Daniel Olsen 2021-10-06 01:44:27 +02:00 committed by Vincent Laporte
parent 260653fe9b
commit f3c53f430f
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildDunePackage, fetchFromGitHub }:
buildDunePackage rec {
pname = "dtools";
version = "0.4.4";
minimalOCamlVersion = "4.05";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-dtools";
rev = "v${version}";
sha256 = "1xbgnij63crikfr2jvar6sf6c7if47qarg5yycdfidip21vhmawf";
};
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-dtools";
description = "Library providing various helper functions to make daemons";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dandellion ];
};
}

View file

@ -314,6 +314,8 @@ let
dtoa = callPackage ../development/ocaml-modules/dtoa { };
dtools = callPackage ../development/ocaml-modules/dtools { };
duff = callPackage ../development/ocaml-modules/duff { };
dum = callPackage ../development/ocaml-modules/dum { };