summary refs log tree commit diff
path: root/pkgs/os-specific/linux/upstart/default.nix
blob: b35f9c0364213f961ca36df9c13445104c122a42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "upstart-0.3.0";
  
  src = fetchurl {
    url = http://nixos.org/tarballs/upstart-0.3.0.tar.bz2;
    md5 = "269046f41c6418225306280044a799eb";
  };
  
  configureFlags = "--enable-compat";
  
  patches = [./cfgdir.patch];
  
  preBuild = "export NIX_CFLAGS_COMPILE=\"$NIX_CFLAGS_COMPILE -DSHELL=\\\"$SHELL\\\"\"";

  meta = {
    homepage = "http://upstart.ubuntu.com/";
    description = "An event-based replacement for the /sbin/init daemon";
  };
}