* Upstart updated to 0.6.5.

* Added libnih (a dependency of Upstart).
* Removed the old Upstart 0.3.x.

svn path=/nixpkgs/trunk/; revision=20015
This commit is contained in:
Eelco Dolstra 2010-02-15 15:55:39 +00:00
parent c0e9630d98
commit e9ad76a2ff
4 changed files with 37 additions and 60 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, dbus, expat }:
let version = "1.0.1"; in
stdenv.mkDerivation rec {
name = "libnih-${version}";
src = fetchurl {
url = "http://code.launchpad.net/libnih/1.0/${version}/+download/libnih-${version}.tar.gz";
sha256 = "1sjkhpryk9vrv84bbab7b47spq60rkycm10ygnjfybjypk6hs7ds";
};
buildInputs = [ pkgconfig dbus expat ];
meta = {
description = "A small library for C application development";
homepage = https://launchpad.net/libnih;
license = "GPLv2";
};
}

View File

@ -1,40 +0,0 @@
{ stdenv, fetchurl, pkgconfig, dbus, expat }:
stdenv.mkDerivation rec {
name = "upstart-0.6.3";
src = fetchurl {
url = "http://upstart.ubuntu.com/download/0.6/${name}.tar.bz2";
sha256 = "0m472fxd466ycm3l1hnkhi7dlyk1w9q42b7b1j9y1zq5nz6cnf42";
};
buildInputs = [ pkgconfig dbus expat ];
NIX_CFLAGS_COMPILE =
''
-DSHELL="${stdenv.shell}"
-DCONFFILE="/etc/init.conf"
-DCONFDIR="/etc/init"
-DPATH="/no-path"
'';
# 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 = 2;
postInstall =
''
t=$out/etc/bash_completion.d
ensureDir $t
cp ${./upstart-bash-completion} $t/upstart
'';
meta = {
homepage = "http://upstart.ubuntu.com/";
description = "An event-based replacement for the /sbin/init daemon";
};
}

View File

@ -1,22 +1,21 @@
{stdenv, fetchurl}: { stdenv, fetchurl, pkgconfig, dbus, libnih }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "upstart-0.3.0"; name = "upstart-0.6.5";
src = fetchurl { src = fetchurl {
url = http://nixos.org/tarballs/upstart-0.3.0.tar.bz2; url = "http://upstart.ubuntu.com/download/0.6/${name}.tar.gz";
md5 = "269046f41c6418225306280044a799eb"; sha256 = "1kyj2xqvcn9pww3cm5i18svl7ark4a4dbqnm3hiclp4z1jwr01lw";
}; };
dontDisableStatic = true; buildInputs = [ pkgconfig dbus libnih ];
configureFlags = "--enable-compat"; NIX_CFLAGS_COMPILE =
patches = [./cfgdir.patch];
preBuild =
'' ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DSHELL=\"$SHELL\"" -DSHELL="${stdenv.shell}"
-DCONFFILE="/etc/init.conf"
-DCONFDIR="/etc/init"
-DPATH="/no-path"
''; '';
# The interface version prevents NixOS from switching to an # The interface version prevents NixOS from switching to an
@ -25,9 +24,7 @@ stdenv.mkDerivation {
# in a backwards-incompatible way. If the interface version of two # in a backwards-incompatible way. If the interface version of two
# Upstart builds is the same, then we can switch between them at # Upstart builds is the same, then we can switch between them at
# runtime; otherwise we can't and we need to reboot. # runtime; otherwise we can't and we need to reboot.
passthru = { passthru.interfaceVersion = 2;
interfaceVersion = 1;
};
postInstall = postInstall =
'' ''

View File

@ -4316,6 +4316,10 @@ let
inherit fetchurl stdenv pkgconfig pcsclite; inherit fetchurl stdenv pkgconfig pcsclite;
}; };
libnih = import ../development/libraries/libnih {
inherit fetchurl stdenv pkgconfig dbus expat;
};
libnova = import ../development/libraries/libnova { libnova = import ../development/libraries/libnova {
inherit fetchurl stdenv; inherit fetchurl stdenv;
}; };
@ -6366,11 +6370,7 @@ let
}; };
upstart = import ../os-specific/linux/upstart { upstart = import ../os-specific/linux/upstart {
inherit fetchurl stdenv; inherit fetchurl stdenv pkgconfig dbus libnih;
};
upstart06 = import ../os-specific/linux/upstart/0.6.nix {
inherit fetchurl stdenv pkgconfig dbus expat;
}; };
upstartJobControl = import ../os-specific/linux/upstart/jobcontrol.nix { upstartJobControl = import ../os-specific/linux/upstart/jobcontrol.nix {