nixpkgs/pkgs/development/libraries/startup-notification/default.nix
Rick van Schijndel 273d8ab1b5 startup-notification: fix cross compilation
assume that realloc implementation is always sane when cross-compiling

according to gnu standards this should be ok, so let's just hardcode
this and hope for the best.
2021-07-02 21:15:33 +02:00

27 lines
795 B
Nix

{lib, stdenv, fetchurl, libX11, libxcb, pkg-config, xcbutil}:
let
version = "0.12";
in
stdenv.mkDerivation {
pname = "libstartup-notification";
inherit version;
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;
};
}