cron: add license
This commit is contained in:
parent
c1801f612c
commit
8fa1389402
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||||||
hardeningEnable = [ "pie" ];
|
hardeningEnable = [ "pie" ];
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
# do not set sticky bit in /nix/store
|
# do not set sticky bit in /nix/store
|
||||||
substituteInPlace Makefile --replace ' -o root' ' ' --replace 111 755 --replace 4755 0755
|
substituteInPlace Makefile --replace ' -o root' ' ' --replace 111 755 --replace 4755 0755
|
||||||
# do not strip during install, broken on cross and we'll do ourselves as needed
|
# do not strip during install, broken on cross and we'll do ourselves as needed
|
||||||
substituteInPlace Makefile --replace ' -s cron' ' cron'
|
substituteInPlace Makefile --replace ' -s cron' ' cron'
|
||||||
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user