ocamlPackages.dtools: init at 0.4.4
This commit is contained in:
parent
260653fe9b
commit
f3c53f430f
2 changed files with 24 additions and 0 deletions
22
pkgs/development/ocaml-modules/dtools/default.nix
Normal file
22
pkgs/development/ocaml-modules/dtools/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue