mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 07:48:58 +00:00
* 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:
parent
c0e9630d98
commit
e9ad76a2ff
20
pkgs/development/libraries/libnih/default.nix
Normal file
20
pkgs/development/libraries/libnih/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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";
|
||||
};
|
||||
}
|
|
@ -1,22 +1,21 @@
|
|||
{stdenv, fetchurl}:
|
||||
{ stdenv, fetchurl, pkgconfig, dbus, libnih }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "upstart-0.3.0";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "upstart-0.6.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://nixos.org/tarballs/upstart-0.3.0.tar.bz2;
|
||||
md5 = "269046f41c6418225306280044a799eb";
|
||||
url = "http://upstart.ubuntu.com/download/0.6/${name}.tar.gz";
|
||||
sha256 = "1kyj2xqvcn9pww3cm5i18svl7ark4a4dbqnm3hiclp4z1jwr01lw";
|
||||
};
|
||||
|
||||
dontDisableStatic = true;
|
||||
buildInputs = [ pkgconfig dbus libnih ];
|
||||
|
||||
configureFlags = "--enable-compat";
|
||||
|
||||
patches = [./cfgdir.patch];
|
||||
|
||||
preBuild =
|
||||
NIX_CFLAGS_COMPILE =
|
||||
''
|
||||
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
|
||||
|
@ -25,9 +24,7 @@ stdenv.mkDerivation {
|
|||
# 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;
|
||||
};
|
||||
passthru.interfaceVersion = 2;
|
||||
|
||||
postInstall =
|
||||
''
|
||||
|
|
|
@ -4316,6 +4316,10 @@ let
|
|||
inherit fetchurl stdenv pkgconfig pcsclite;
|
||||
};
|
||||
|
||||
libnih = import ../development/libraries/libnih {
|
||||
inherit fetchurl stdenv pkgconfig dbus expat;
|
||||
};
|
||||
|
||||
libnova = import ../development/libraries/libnova {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
@ -6366,11 +6370,7 @@ let
|
|||
};
|
||||
|
||||
upstart = import ../os-specific/linux/upstart {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
upstart06 = import ../os-specific/linux/upstart/0.6.nix {
|
||||
inherit fetchurl stdenv pkgconfig dbus expat;
|
||||
inherit fetchurl stdenv pkgconfig dbus libnih;
|
||||
};
|
||||
|
||||
upstartJobControl = import ../os-specific/linux/upstart/jobcontrol.nix {
|
||||
|
|
Loading…
Reference in a new issue