about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/sway/idle.nix
diff options
context:
space:
mode:
authorAdam Joseph <adam@westernsemico.com>2022-09-21 00:04:52 -0700
committerAdam Joseph <adam@westernsemico.com>2023-01-22 00:27:19 -0800
commit42815b4a0ca4b1a433ce58f7bf92fb5fa1aec064 (patch)
tree55ec264893a2073faff7462246f8df167b36f415 /pkgs/applications/window-managers/sway/idle.nix
parent5b66b6b8c23bf2003b99fac9fee2c743eb3ac253 (diff)
treewide: systemdSupport: use lib.meta.availableOn
Many packages have some kind of flag indicating whether or not to build with
systemd support.  Most of these default to `stdenv.isLinux`, but systemd does
not build on (and is marked `broken` for) `isStatic`.  Only a few packages have
the needed `&& !isStatic` in the default value for their parameter.

This commit moves the logic for the default value of these flags into
`systemd.meta.{platforms,badPlatforms}` and evaluates those conditions using
`lib.meta.availableOn`.

This provides three benefits:

1. The default values are set correctly (i.e. including `&& isStatic`)

2. The default values are set consistently

3. The way is paved for any future non-Linux systemd platforms (FreeBSD is
   reported to have experimental systemd support)
Diffstat (limited to 'pkgs/applications/window-managers/sway/idle.nix')
-rw-r--r--pkgs/applications/window-managers/sway/idle.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/window-managers/sway/idle.nix b/pkgs/applications/window-managers/sway/idle.nix
index 6479760a743e8..b410919022f12 100644
--- a/pkgs/applications/window-managers/sway/idle.nix
+++ b/pkgs/applications/window-managers/sway/idle.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, fetchFromGitHub
 , meson, ninja, pkg-config, scdoc, wayland-scanner
 , wayland, wayland-protocols, runtimeShell
-, systemdSupport ? stdenv.isLinux, systemd
+, systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd, systemd
 }:
 
 stdenv.mkDerivation rec {