cron: add license

This commit is contained in:
Markus Kowalewski 2018-08-15 20:24:49 +02:00
parent c1801f612c
commit 8fa1389402
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -36,8 +36,9 @@ stdenv.mkDerivation {
preInstall = "mkdir -p $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8"; preInstall = "mkdir -p $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8";
meta = { meta = with stdenv.lib; {
description = "Daemon for running commands at specific times (Vixie Cron)"; description = "Daemon for running commands at specific times (Vixie Cron)";
platforms = with stdenv.lib.platforms; linux ++ darwin; license = licenses.bsd0;
platforms = with platforms; linux ++ darwin;
}; };
} }