mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 02:33:15 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
22 lines
462 B
Nix
22 lines
462 B
Nix
{ lib, python3, fetchPypi }:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "chkcrontab";
|
|
version = "1.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tool to detect crontab errors";
|
|
mainProgram = "chkcrontab";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
homepage = "https://github.com/lyda/chkcrontab";
|
|
};
|
|
}
|