* Upstart 0.6.6.

svn path=/nixpkgs/trunk/; revision=22505
This commit is contained in:
Eelco Dolstra 2010-07-07 10:03:46 +00:00
parent e230d213fa
commit a157c84c81
2 changed files with 4 additions and 4 deletions

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, pkgconfig, dbus, expat }:
let version = "1.0.1"; in
let version = "1.0.2"; 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";
sha256 = "0zi5qacppsipc03gqdr0vpgfqk17kxxxnrqzb6md12kixfahl33v";
};
buildInputs = [ pkgconfig dbus expat ];

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, dbus, libnih }:
stdenv.mkDerivation rec {
name = "upstart-0.6.5";
name = "upstart-0.6.6";
src = fetchurl {
url = "http://upstart.ubuntu.com/download/0.6/${name}.tar.gz";
sha256 = "1kyj2xqvcn9pww3cm5i18svl7ark4a4dbqnm3hiclp4z1jwr01lw";
sha256 = "1cy962n4ljjxfxaigcnqsl9gq8j09j28g5jg19zk4lc7h1503d3s";
};
buildInputs = [ pkgconfig dbus libnih ];