e7d1be840c
Those are packages I don't use anymore for a longer time and I therefore don't think that listing me as maintainer is a good idea. If those should be removed now, I'd be fine with that. SuperSandro2000 will take care of a few packages[1]. [1] https://github.com/NixOS/nixpkgs/pull/108126#pullrequestreview-560599381
21 lines
463 B
Nix
21 lines
463 B
Nix
{ python, stdenv }:
|
|
|
|
with python.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "chkcrontab";
|
|
version = "1.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool to detect crontab errors";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
homepage = "https://github.com/lyda/chkcrontab";
|
|
};
|
|
}
|