* Added Firefox 3.6. It's not entirely stable yet though. In

particular it segfaults with the `-P' option.

svn path=/nixpkgs/trunk/; revision=19606
This commit is contained in:
Eelco Dolstra
2010-01-21 22:23:59 +00:00
parent b8f106abd7
commit c7194fe7cf
4 changed files with 170 additions and 14 deletions

View File

@@ -1,17 +1,17 @@
args: with args;
{ stdenv, fetchurl, pkgconfig, dbus, dbus_glib, gtk, glib }:
stdenv.mkDerivation {
name = "libnotify-0.4.4";
#builder = ./builder.sh;
stdenv.mkDerivation rec {
name = "libnotify-0.4.5";
src = fetchurl {
url = http://www.galago-project.org/files/releases/source/libnotify/libnotify-0.4.4.tar.gz;
sha256 = "2389a9b8220f776033f728a8d46352cfee5c8705066e34887bfb188f9f0d3856";
url = "http://www.galago-project.org/files/releases/source/libnotify/${name}.tar.gz";
sha256 = "1ndh7wpm9qh12vm5avjrq2xv1j681j9qq6j2fyj6a2shl67dp687";
};
buildInputs = [
pkgconfig dbus.libs dbus_glib gtk glib
];
buildInputs = [ pkgconfig dbus.libs dbus_glib gtk glib ];
configureFlags="";
meta = {
homepage = http://galago-project.org/;
description = "A library that sends desktop notifications to a notification daemon";
};
}