Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
576 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchFromGitHub,
}:
buildDunePackage rec {
pname = "dtools";
version = "0.4.6";
minimalOCamlVersion = "4.05";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-dtools";
rev = "v${version}";
sha256 = "sha256-MIZM/IlPWPa/r/f8EXkhU8gZctOZeAIGZgxoGMF2IkE=";
};
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-dtools";
description = "Library providing various helper functions to make daemons";
license = licenses.gpl2Only;
maintainers = with maintainers; [ dandellion ];
};
}