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
|
2021-07-03 16:02:23 +01:00
|
|
|
, wayland, libxkbcommon, pcre, json_c, dbus, 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
|
2015-10-24 00:32:20 +01:00
|
|
|
}:
|
|
|
|
|
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
|
|
|
];
|
|
|
|
|
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 = [
|
2019-03-11 16:18:19 +00:00
|
|
|
wayland libxkbcommon pcre json_c dbus 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; })
|
2017-09-26 16:24:13 +01:00
|
|
|
];
|
2016-07-17 08:31:41 +01:00
|
|
|
|
2019-03-11 16:18:19 +00:00
|
|
|
mesonFlags = [
|
2021-04-08 11:35:51 +01:00
|
|
|
"-Dsd-bus-provider=libsystemd"
|
2021-10-11 20:41:06 +01:00
|
|
|
]
|
|
|
|
++ lib.optional (!enableXWayland) "-Dxwayland=disabled"
|
|
|
|
;
|
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
|
|
|
};
|
|
|
|
}
|