1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5}:
6
7buildDunePackage rec {
8 pname = "dtools";
9 version = "0.4.6";
10
11 minimalOCamlVersion = "4.05";
12
13 src = fetchFromGitHub {
14 owner = "savonet";
15 repo = "ocaml-dtools";
16 rev = "v${version}";
17 sha256 = "sha256-MIZM/IlPWPa/r/f8EXkhU8gZctOZeAIGZgxoGMF2IkE=";
18 };
19
20 meta = with lib; {
21 homepage = "https://github.com/savonet/ocaml-dtools";
22 description = "Library providing various helper functions to make daemons";
23 license = licenses.gpl2Only;
24 maintainers = with maintainers; [ dandellion ];
25 };
26}