summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRobert Schütz <rschuetz17@gmail.com>2018-03-18 10:22:54 +0100
committerGitHub <noreply@github.com>2018-03-18 10:22:54 +0100
commitb96fa84bbfc3dac97bc2566ca059b3c19b613b56 (patch)
treeae2ca2a42b926e9fde62523160c7dcae6fc18b77 /pkgs/tools
parenta5551103b50033d2ef6e0eb9ca1d7cab5528caf9 (diff)
parent8ed04b9348d5db13195ce0d762910be607327657 (diff)
downloadnixlib-b96fa84bbfc3dac97bc2566ca059b3c19b613b56.tar
nixlib-b96fa84bbfc3dac97bc2566ca059b3c19b613b56.tar.gz
nixlib-b96fa84bbfc3dac97bc2566ca059b3c19b613b56.tar.bz2
nixlib-b96fa84bbfc3dac97bc2566ca059b3c19b613b56.tar.lz
nixlib-b96fa84bbfc3dac97bc2566ca059b3c19b613b56.tar.xz
nixlib-b96fa84bbfc3dac97bc2566ca059b3c19b613b56.tar.zst
nixlib-b96fa84bbfc3dac97bc2566ca059b3c19b613b56.zip
Merge pull request #35347 from Ma27/package-chkcrontab
chkcrontab: init at 1.7
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/admin/chkcrontab/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/admin/chkcrontab/default.nix b/pkgs/tools/admin/chkcrontab/default.nix
new file mode 100644
index 000000000000..a4b119f126a4
--- /dev/null
+++ b/pkgs/tools/admin/chkcrontab/default.nix
@@ -0,0 +1,20 @@
+{ 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; [ ma27 ];
+    homepage = https://github.com/lyda/chkcrontab;
+  };
+}