about summary refs log tree commit diff
path: root/pkgs/tools/system/cron/default.nix
blob: 2f7bffcbe31df35fbb3c0cce5bebdb5fd6f1cb80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "cron-4.1";
  src = fetchurl {
    url = ftp://ftp.isc.org/isc/cron/cron_4.1.shar;
    md5 = "5e1be9dbde66295821ac7899f2e1f561";
  };

  unpackCmd = "(mkdir cron && cd cron && sh $curSrc)";

  preBuild = "
    substituteInPlace Makefile --replace ' -o root' ' ' --replace 111 755
    makeFlags=\"DESTROOT=$out\"
  ";

  preInstall = "ensureDir $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8";
  
  meta = {
    description = "Vixie Cron, a daemon for running commands at specific times";
  };
}