summary refs log tree commit diff
path: root/pkgs/development/libraries/startup-notification/default.nix
blob: b4b29b54881e1ebafe97fbc066cb04543f54c69e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl, libX11, libxcb, pkgconfig, xcbutil}:

let
  version = "0.12";
in
stdenv.mkDerivation {
  name = "libstartup-notification-${version}";
  src = fetchurl {
    url = "http://www.freedesktop.org/software/startup-notification/releases/startup-notification-${version}.tar.gz";
    sha256 = "3c391f7e930c583095045cd2d10eb73a64f085c7fde9d260f2652c7cb3cfbe4a";
  };

  buildInputs = [ libX11 libxcb pkgconfig xcbutil ];

  meta = {
    homepage = http://www.freedesktop.org/software/startup-notification;
    description = "Application startup notification and feedback library";
    license = stdenv.lib.licenses.lgpl2;
  };
}