* 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";
};
}