about summary refs log tree commit diff
path: root/pkgs/development/libraries/libnotify/default.nix
blob: 41a9cf518e4cc4ca0a42b9d0952d40b1651da7d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, pkgconfig, autoreconfHook
, glib, gdk_pixbuf, gobjectIntrospection }:

stdenv.mkDerivation rec {
  ver_maj = "0.7";
  ver_min = "7";
  name = "libnotify-${ver_maj}.${ver_min}";

  src = fetchurl {
    url = "mirror://gnome/sources/libnotify/${ver_maj}/${name}.tar.xz";
    sha256 = "017wgq9n00hx39n0hm784zn18hl721hbaijda868cm96bcqwxd4w";
  };

  # disable tests as we don't need to depend on gtk+(2/3)
  configureFlags = [ "--disable-tests" ];

  nativeBuildInputs = [ pkgconfig autoreconfHook ];
  buildInputs = [ glib gdk_pixbuf gobjectIntrospection ];

  meta = {
    homepage = https://developer.gnome.org/notification-spec/;
    description = "A library that sends desktop notifications to a notification daemon";
    platforms = stdenv.lib.platforms.unix;
  };
}