summary refs log tree commit diff
path: root/pkgs/development/libraries/startup-notification
diff options
context:
space:
mode:
authorAdam Joseph <adam@westernsemico.com>2023-11-13 06:47:08 -0800
committerAdam Joseph <54836058+amjoseph-nixpkgs@users.noreply.github.com>2023-11-17 08:07:34 +0000
commitc7e0f6b9050553dfa8dff259a0536326ac43b0ff (patch)
tree6862049af64b6ccf9911f5cb54f1651aaf07a182 /pkgs/development/libraries/startup-notification
parent6a689e72efffde73cc2c6cfa7e142a8d7f8feafd (diff)
downloadnixpkgs-c7e0f6b9050553dfa8dff259a0536326ac43b0ff.tar
nixpkgs-c7e0f6b9050553dfa8dff259a0536326ac43b0ff.tar.gz
nixpkgs-c7e0f6b9050553dfa8dff259a0536326ac43b0ff.tar.bz2
nixpkgs-c7e0f6b9050553dfa8dff259a0536326ac43b0ff.tar.lz
nixpkgs-c7e0f6b9050553dfa8dff259a0536326ac43b0ff.tar.xz
nixpkgs-c7e0f6b9050553dfa8dff259a0536326ac43b0ff.tar.zst
nixpkgs-c7e0f6b9050553dfa8dff259a0536326ac43b0ff.zip
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.
Diffstat (limited to 'pkgs/development/libraries/startup-notification')
-rw-r--r--pkgs/development/libraries/startup-notification/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/startup-notification/default.nix b/pkgs/development/libraries/startup-notification/default.nix
index c1c5819ad42..bf84345be2d 100644
--- a/pkgs/development/libraries/startup-notification/default.nix
+++ b/pkgs/development/libraries/startup-notification/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "3c391f7e930c583095045cd2d10eb73a64f085c7fde9d260f2652c7cb3cfbe4a";
   };
 
-  configureFlags = lib.optionals (stdenv.buildPlatform != stdenv.targetPlatform) [
+  configureFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
     "lf_cv_sane_realloc=yes"
   ];