summary refs log tree commit diff
path: root/pkgs/development/libraries/startup-notification/default.nix
blob: 001123ead60f63a90e9f76b899e2f971803033bc (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
{lib, stdenv, fetchurl, libX11, libxcb, pkg-config, xcbutil}:

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

  configureFlags = lib.optionals (stdenv.buildPlatform != stdenv.targetPlatform) [
    "lf_cv_sane_realloc=yes"
  ];

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libX11 libxcb xcbutil ];

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