2020-08-31 17:51:05 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, substituteAll, swaybg
|
2022-01-24 01:18:06 +00:00
|
|
|
, meson, ninja, pkg-config, wayland-scanner, scdoc
|
sway: respect systemdSupport and dbusSupport (#160972)
Sway can be compiled with or without systemd(-logind) and dbus. This
commit exposes that support via the global systemdSupport and
dbusSupport arguments, which are understood by many other nixpkgs
expressions and can be set globally in ~/.config/nixpkgs/config.nix.
This commit also adds a third argument, trayEnabled, which allows to
disable sway's tray. The tray requires dbusSupport and
systemdSupport.
Reviewers of this commit asked for potential use cases. There are
many of them; a very non-exhaustive list includes:
* Use of nixpkgs on operating systems which systemd does not support,
such as MacOS/Darwin, FreeBSD, OpenBSD, or Alpine Linux.
* Use of nixpkgs on *-musl platforms, which systemd does not
officially support (out-of-tree patches to support musl exist for a
few systemd versions).
* Use of sway in situations where dbus is inappropriate, such as
sway's "kiosk mode".
* High-security environments, where the additional attack surface
exposed by dbus outweighs any features it may offer.
This is a very non-exhaustive list.
2022-03-06 12:39:31 +00:00
|
|
|
, wayland, libxkbcommon, pcre, json_c, libevdev
|
2020-05-08 10:45:27 +01:00
|
|
|
, pango, cairo, libinput, libcap, pam, gdk-pixbuf, librsvg
|
2021-04-08 11:35:51 +01:00
|
|
|
, wlroots, wayland-protocols, libdrm
|
nixos/tests/sway: init
This adds a basic test for Sway. Because Sway is an important part of
the Wayland ecosystem, is stable, and has few dependencies this test
should also be suitable for testing core packages it depends on (e.g.
wayland, wayland-protocols, wlroots, xwayland, mesa, libglvnd, libdrm,
and soon libseat).
The test is modeled after the suggested way of using Sway, i.e. logging
in via a virtual console (tty1) and copying the configuration from
/etc/sway/config (we replace Mod4 (the GNU/Tux key - you've replaced
that evil logo, right? :D) with Mod1 (Alt key) because QEMU monitor's
sendkey command doesn't support the former).
The shell aliases are used to make the sendkey log output shorter.
Co-authored-by: Patrick Hilhorst <git@hilhorst.be>
2021-05-01 21:24:28 +01:00
|
|
|
, nixosTests
|
2021-05-11 17:51:43 +01:00
|
|
|
# Used by the NixOS module:
|
|
|
|
, isNixOS ? false
|
2021-10-11 20:41:06 +01:00
|
|
|
|
|
|
|
, enableXWayland ? true
|
sway: respect systemdSupport and dbusSupport (#160972)
Sway can be compiled with or without systemd(-logind) and dbus. This
commit exposes that support via the global systemdSupport and
dbusSupport arguments, which are understood by many other nixpkgs
expressions and can be set globally in ~/.config/nixpkgs/config.nix.
This commit also adds a third argument, trayEnabled, which allows to
disable sway's tray. The tray requires dbusSupport and
systemdSupport.
Reviewers of this commit asked for potential use cases. There are
many of them; a very non-exhaustive list includes:
* Use of nixpkgs on operating systems which systemd does not support,
such as MacOS/Darwin, FreeBSD, OpenBSD, or Alpine Linux.
* Use of nixpkgs on *-musl platforms, which systemd does not
officially support (out-of-tree patches to support musl exist for a
few systemd versions).
* Use of sway in situations where dbus is inappropriate, such as
sway's "kiosk mode".
* High-security environments, where the additional attack surface
exposed by dbus outweighs any features it may offer.
This is a very non-exhaustive list.
2022-03-06 12:39:31 +00:00
|
|
|
, systemdSupport ? stdenv.isLinux
|
|
|
|
, dbusSupport ? true
|
|
|
|
, dbus
|
2022-03-09 02:42:01 +00:00
|
|
|
, trayEnabled ? systemdSupport && dbusSupport
|
2015-10-24 00:32:20 +01:00
|
|
|
}:
|
|
|
|
|
sway: respect systemdSupport and dbusSupport (#160972)
Sway can be compiled with or without systemd(-logind) and dbus. This
commit exposes that support via the global systemdSupport and
dbusSupport arguments, which are understood by many other nixpkgs
expressions and can be set globally in ~/.config/nixpkgs/config.nix.
This commit also adds a third argument, trayEnabled, which allows to
disable sway's tray. The tray requires dbusSupport and
systemdSupport.
Reviewers of this commit asked for potential use cases. There are
many of them; a very non-exhaustive list includes:
* Use of nixpkgs on operating systems which systemd does not support,
such as MacOS/Darwin, FreeBSD, OpenBSD, or Alpine Linux.
* Use of nixpkgs on *-musl platforms, which systemd does not
officially support (out-of-tree patches to support musl exist for a
few systemd versions).
* Use of sway in situations where dbus is inappropriate, such as
sway's "kiosk mode".
* High-security environments, where the additional attack surface
exposed by dbus outweighs any features it may offer.
This is a very non-exhaustive list.
2022-03-06 12:39:31 +00:00
|
|
|
# The "sd-bus-provider" meson option does not include a "none" option,
|
|
|
|
# but it is silently ignored iff "-Dtray=disabled". We use "basu"
|
|
|
|
# (which is not in nixpkgs) instead of "none" to alert us if this
|
|
|
|
# changes: https://github.com/swaywm/sway/issues/6843#issuecomment-1047288761
|
|
|
|
assert trayEnabled -> systemdSupport && dbusSupport;
|
|
|
|
let sd-bus-provider = if systemdSupport then "libsystemd" else "basu"; in
|
|
|
|
|
2017-10-17 02:47:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-12-08 12:56:56 +00:00
|
|
|
pname = "sway-unwrapped";
|
2021-12-23 19:19:41 +00:00
|
|
|
version = "1.7";
|
2016-07-17 08:31:41 +01:00
|
|
|
|
2017-09-26 16:24:13 +01:00
|
|
|
src = fetchFromGitHub {
|
2017-11-07 21:16:50 +00:00
|
|
|
owner = "swaywm";
|
2017-09-26 16:24:13 +01:00
|
|
|
repo = "sway";
|
2017-11-07 21:16:50 +00:00
|
|
|
rev = version;
|
2021-12-23 19:19:41 +00:00
|
|
|
sha256 = "0ss3l258blyf2d0lwd7pi7ga1fxfj8pxhag058k7cmjhs3y30y5l";
|
2017-09-26 16:24:13 +01:00
|
|
|
};
|
2016-07-17 08:31:41 +01:00
|
|
|
|
2019-03-11 16:18:19 +00:00
|
|
|
patches = [
|
2019-04-27 21:38:18 +01:00
|
|
|
./load-configuration-from-etc.patch
|
2020-08-31 17:51:05 +01:00
|
|
|
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
inherit swaybg;
|
|
|
|
})
|
2021-05-14 15:34:18 +01:00
|
|
|
] ++ lib.optionals (!isNixOS) [
|
|
|
|
# References to /nix/store/... will get GC'ed which causes problems when
|
|
|
|
# copying the default configuration:
|
|
|
|
./sway-config-no-nix-store-references.patch
|
|
|
|
] ++ lib.optionals isNixOS [
|
|
|
|
# Use /run/current-system/sw/share and /etc instead of /nix/store
|
|
|
|
# references:
|
|
|
|
./sway-config-nixos-paths.patch
|
2019-03-11 16:18:19 +00:00
|
|
|
];
|
|
|
|
|
2022-05-08 21:56:15 +01:00
|
|
|
strictDeps = true;
|
2021-12-22 19:01:44 +00:00
|
|
|
depsBuildBuild = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
2019-12-08 12:56:56 +00:00
|
|
|
nativeBuildInputs = [
|
2022-01-24 01:18:06 +00:00
|
|
|
meson ninja pkg-config wayland-scanner scdoc
|
2019-12-08 12:56:56 +00:00
|
|
|
];
|
2019-03-11 16:18:19 +00:00
|
|
|
|
2017-09-26 16:24:13 +01:00
|
|
|
buildInputs = [
|
sway: respect systemdSupport and dbusSupport (#160972)
Sway can be compiled with or without systemd(-logind) and dbus. This
commit exposes that support via the global systemdSupport and
dbusSupport arguments, which are understood by many other nixpkgs
expressions and can be set globally in ~/.config/nixpkgs/config.nix.
This commit also adds a third argument, trayEnabled, which allows to
disable sway's tray. The tray requires dbusSupport and
systemdSupport.
Reviewers of this commit asked for potential use cases. There are
many of them; a very non-exhaustive list includes:
* Use of nixpkgs on operating systems which systemd does not support,
such as MacOS/Darwin, FreeBSD, OpenBSD, or Alpine Linux.
* Use of nixpkgs on *-musl platforms, which systemd does not
officially support (out-of-tree patches to support musl exist for a
few systemd versions).
* Use of sway in situations where dbus is inappropriate, such as
sway's "kiosk mode".
* High-security environments, where the additional attack surface
exposed by dbus outweighs any features it may offer.
This is a very non-exhaustive list.
2022-03-06 12:39:31 +00:00
|
|
|
wayland libxkbcommon pcre json_c libevdev
|
2020-05-08 10:45:27 +01:00
|
|
|
pango cairo libinput libcap pam gdk-pixbuf librsvg
|
2021-10-11 20:41:06 +01:00
|
|
|
wayland-protocols libdrm
|
|
|
|
(wlroots.override { inherit enableXWayland; })
|
sway: respect systemdSupport and dbusSupport (#160972)
Sway can be compiled with or without systemd(-logind) and dbus. This
commit exposes that support via the global systemdSupport and
dbusSupport arguments, which are understood by many other nixpkgs
expressions and can be set globally in ~/.config/nixpkgs/config.nix.
This commit also adds a third argument, trayEnabled, which allows to
disable sway's tray. The tray requires dbusSupport and
systemdSupport.
Reviewers of this commit asked for potential use cases. There are
many of them; a very non-exhaustive list includes:
* Use of nixpkgs on operating systems which systemd does not support,
such as MacOS/Darwin, FreeBSD, OpenBSD, or Alpine Linux.
* Use of nixpkgs on *-musl platforms, which systemd does not
officially support (out-of-tree patches to support musl exist for a
few systemd versions).
* Use of sway in situations where dbus is inappropriate, such as
sway's "kiosk mode".
* High-security environments, where the additional attack surface
exposed by dbus outweighs any features it may offer.
This is a very non-exhaustive list.
2022-03-06 12:39:31 +00:00
|
|
|
] ++ lib.optionals dbusSupport [
|
|
|
|
dbus
|
2017-09-26 16:24:13 +01:00
|
|
|
];
|
2016-07-17 08:31:41 +01:00
|
|
|
|
sway: respect systemdSupport and dbusSupport (#160972)
Sway can be compiled with or without systemd(-logind) and dbus. This
commit exposes that support via the global systemdSupport and
dbusSupport arguments, which are understood by many other nixpkgs
expressions and can be set globally in ~/.config/nixpkgs/config.nix.
This commit also adds a third argument, trayEnabled, which allows to
disable sway's tray. The tray requires dbusSupport and
systemdSupport.
Reviewers of this commit asked for potential use cases. There are
many of them; a very non-exhaustive list includes:
* Use of nixpkgs on operating systems which systemd does not support,
such as MacOS/Darwin, FreeBSD, OpenBSD, or Alpine Linux.
* Use of nixpkgs on *-musl platforms, which systemd does not
officially support (out-of-tree patches to support musl exist for a
few systemd versions).
* Use of sway in situations where dbus is inappropriate, such as
sway's "kiosk mode".
* High-security environments, where the additional attack surface
exposed by dbus outweighs any features it may offer.
This is a very non-exhaustive list.
2022-03-06 12:39:31 +00:00
|
|
|
mesonFlags =
|
|
|
|
[ "-Dsd-bus-provider=${sd-bus-provider}" ]
|
2021-10-11 20:41:06 +01:00
|
|
|
++ lib.optional (!enableXWayland) "-Dxwayland=disabled"
|
sway: respect systemdSupport and dbusSupport (#160972)
Sway can be compiled with or without systemd(-logind) and dbus. This
commit exposes that support via the global systemdSupport and
dbusSupport arguments, which are understood by many other nixpkgs
expressions and can be set globally in ~/.config/nixpkgs/config.nix.
This commit also adds a third argument, trayEnabled, which allows to
disable sway's tray. The tray requires dbusSupport and
systemdSupport.
Reviewers of this commit asked for potential use cases. There are
many of them; a very non-exhaustive list includes:
* Use of nixpkgs on operating systems which systemd does not support,
such as MacOS/Darwin, FreeBSD, OpenBSD, or Alpine Linux.
* Use of nixpkgs on *-musl platforms, which systemd does not
officially support (out-of-tree patches to support musl exist for a
few systemd versions).
* Use of sway in situations where dbus is inappropriate, such as
sway's "kiosk mode".
* High-security environments, where the additional attack surface
exposed by dbus outweighs any features it may offer.
This is a very non-exhaustive list.
2022-03-06 12:39:31 +00:00
|
|
|
++ lib.optional (!trayEnabled) "-Dtray=disabled"
|
2021-10-11 20:41:06 +01:00
|
|
|
;
|
2016-07-17 08:31:41 +01:00
|
|
|
|
nixos/tests/sway: init
This adds a basic test for Sway. Because Sway is an important part of
the Wayland ecosystem, is stable, and has few dependencies this test
should also be suitable for testing core packages it depends on (e.g.
wayland, wayland-protocols, wlroots, xwayland, mesa, libglvnd, libdrm,
and soon libseat).
The test is modeled after the suggested way of using Sway, i.e. logging
in via a virtual console (tty1) and copying the configuration from
/etc/sway/config (we replace Mod4 (the GNU/Tux key - you've replaced
that evil logo, right? :D) with Mod1 (Alt key) because QEMU monitor's
sendkey command doesn't support the former).
The shell aliases are used to make the sendkey log output shorter.
Co-authored-by: Patrick Hilhorst <git@hilhorst.be>
2021-05-01 21:24:28 +01:00
|
|
|
passthru.tests.basic = nixosTests.sway;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-24 19:50:43 +01:00
|
|
|
description = "An i3-compatible tiling Wayland compositor";
|
|
|
|
longDescription = ''
|
|
|
|
Sway is a tiling Wayland compositor and a drop-in replacement for the i3
|
|
|
|
window manager for X11. It works with your existing i3 configuration and
|
|
|
|
supports most of i3's features, plus a few extras.
|
|
|
|
Sway allows you to arrange your application windows logically, rather
|
|
|
|
than spatially. Windows are arranged into a grid by default which
|
|
|
|
maximizes the efficiency of your screen and can be quickly manipulated
|
|
|
|
using only the keyboard.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://swaywm.org";
|
2020-06-24 19:50:43 +01:00
|
|
|
changelog = "https://github.com/swaywm/sway/releases/tag/${version}";
|
2017-09-26 16:24:13 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2019-12-26 14:13:48 +00:00
|
|
|
maintainers = with maintainers; [ primeos synthetica ma27 ];
|
2017-09-26 16:24:13 +01:00
|
|
|
};
|
|
|
|
}
|