nixpkgs/pkgs/development/libraries/startup-notification/default.nix
Adam Joseph c7e0f6b905 treewide: s_targetPlatform_hostPlatform_ in non-compiler packages
stdenv.targetPlatform really shouldn't be used by software that
doesn't generate or manipulate binaries.  I reviewed all uses of
targetPlatform outside of pkgs/development/compilers and pkgs/stdenv
and replaced those which weren't involved in something which fits
these criteria.
2023-11-17 08:07:34 +00:00

24 lines
772 B
Nix

{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.hostPlatform) [
"lf_cv_sane_realloc=yes"
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libX11 libxcb xcbutil ];
meta = {
homepage = "https://www.freedesktop.org/software/startup-notification";
description = "Application startup notification and feedback library";
license = lib.licenses.lgpl2;
};
}