nixpkgs/pkgs/development/libraries/libnotify/default.nix
Eelco Dolstra c7194fe7cf * 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
2010-01-21 22:23:59 +00:00

18 lines
513 B
Nix

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