nixpkgs/pkgs/os-specific/linux/upstart/default.nix
Eelco Dolstra 09fd56cc9e * Upstart in the stdenv branch is incompatible with Upstart in the
trunk: it segfaults when it tries to start the new Upstart, which
  locks up the entire system.  This may be because of the different
  Glibc, or something.  In any case, require a reboot.

svn path=/nixpkgs/branches/stdenv-updates/; revision=15314
2009-04-25 22:48:48 +00:00

34 lines
973 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "upstart-0.3.0";
src = fetchurl {
url = http://nixos.org/tarballs/upstart-0.3.0.tar.bz2;
md5 = "269046f41c6418225306280044a799eb";
};
dontDisableStatic = true;
configureFlags = "--enable-compat";
patches = [./cfgdir.patch];
preBuild = "export NIX_CFLAGS_COMPILE=\"$NIX_CFLAGS_COMPILE -DSHELL=\\\"$SHELL\\\"\"";
# The interface version prevents NixOS from switching to an
# incompatible Upstart at runtime. (Switching across reboots is
# fine, of course.) It should be increased whenever Upstart changes
# in a backwards-incompatible way. If the interface version of two
# Upstart builds is the same, then we can switch between them at
# runtime; otherwise we can't and we need to reboot.
passthru = {
interfaceVersion = 1;
};
meta = {
homepage = "http://upstart.ubuntu.com/";
description = "An event-based replacement for the /sbin/init daemon";
};
}