Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

lxtask: fix darwin build

/cc ZHF #36454

(cherry picked from commit 9b5669b5a6947e8f5230df521d859a66346a9b90)

+4 -2
+4 -2
pkgs/desktops/lxde/core/lxtask/default.nix
··· 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkgconfig intltool ]; 13 - 13 + 14 14 buildInputs = [ gtk3 ]; 15 15 16 16 configureFlags = [ "--enable-gtk3" ]; 17 + 18 + NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl"; 17 19 18 20 meta = { 19 21 description = "Lightweight and desktop independent task manager"; ··· 24 26 Desktop Environment, it's totally desktop independent and only 25 27 requires pure gtk+. 26 28 ''; 27 - homepage = https://wiki.lxde.org/en/LXTask; 29 + homepage = https://wiki.lxde.org/en/LXTask; 28 30 license = stdenv.lib.licenses.gpl2Plus; 29 31 platforms = stdenv.lib.platforms.unix; 30 32 maintainers = [ stdenv.lib.maintainers.romildo ];