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