chkcrontab: init at 1.7

`chkcrontab` is a simple utility to check crontab for errors.
Fixes #34969

+22
+20
pkgs/tools/admin/chkcrontab/default.nix
··· 1 + { python, stdenv }: 2 + 3 + with python.pkgs; 4 + 5 + buildPythonApplication rec { 6 + pname = "chkcrontab"; 7 + version = "1.7"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn"; 12 + }; 13 + 14 + meta = with stdenv.lib; { 15 + description = "A tool to detect crontab errors"; 16 + license = licenses.asl20; 17 + maintainers = with maintainers; [ ma27 ]; 18 + homepage = https://github.com/lyda/chkcrontab; 19 + }; 20 + }
+2
pkgs/top-level/all-packages.nix
··· 608 608 609 609 container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { }; 610 610 611 + chkcrontab = callPackage ../tools/admin/chkcrontab { }; 612 + 611 613 djmount = callPackage ../tools/filesystems/djmount { }; 612 614 613 615 dgsh = callPackage ../shells/dgsh { };