11 stdenv.mkDerivation rec {
12 pname = "libstartup-notification";
15 url = "https://www.freedesktop.org/software/startup-notification/releases/startup-notification-${version}.tar.gz";
16 sha256 = "3c391f7e930c583095045cd2d10eb73a64f085c7fde9d260f2652c7cb3cfbe4a";
19 configureFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
20 "lf_cv_sane_realloc=yes"
23 nativeBuildInputs = [ pkg-config ];
31 homepage = "https://www.freedesktop.org/software/startup-notification";
32 description = "Application startup notification and feedback library";
33 license = lib.licenses.lgpl2;