2019-06-03 06:25:00 -07:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
2020-06-24 11:50:43 -07:00
|
|
|
, meson, ninja, pkg-config, wayland, scdoc
|
|
|
|
, libxkbcommon, pcre, json_c, dbus, libevdev
|
2020-05-08 02:45:27 -07:00
|
|
|
, pango, cairo, libinput, libcap, pam, gdk-pixbuf, librsvg
|
2019-12-08 04:56:56 -08:00
|
|
|
, wlroots, wayland-protocols
|
2015-10-23 16:32:20 -07:00
|
|
|
}:
|
|
|
|
|
2017-10-16 18:47:59 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-12-08 04:56:56 -08:00
|
|
|
pname = "sway-unwrapped";
|
2020-06-24 11:50:43 -07:00
|
|
|
version = "1.5";
|
2016-07-17 00:31:41 -07:00
|
|
|
|
2017-09-26 08:24:13 -07:00
|
|
|
src = fetchFromGitHub {
|
2017-11-07 13:16:50 -08:00
|
|
|
owner = "swaywm";
|
2017-09-26 08:24:13 -07:00
|
|
|
repo = "sway";
|
2017-11-07 13:16:50 -08:00
|
|
|
rev = version;
|
2020-06-24 11:50:43 -07:00
|
|
|
sha256 = "0r3b7h778l9i20z3him9i2qsaynpn9y78hzfgv3cqi8fyry2c4f9";
|
2017-09-26 08:24:13 -07:00
|
|
|
};
|
2016-07-17 00:31:41 -07:00
|
|
|
|
2019-03-11 09:18:19 -07:00
|
|
|
patches = [
|
2019-03-11 09:32:38 -07:00
|
|
|
./sway-config-no-nix-store-references.patch
|
2019-04-27 13:38:18 -07:00
|
|
|
./load-configuration-from-etc.patch
|
2019-03-11 09:18:19 -07:00
|
|
|
];
|
|
|
|
|
2020-06-24 11:50:43 -07:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace meson.build --replace "v1.5" "1.5"
|
|
|
|
'';
|
|
|
|
|
2019-12-08 04:56:56 -08:00
|
|
|
nativeBuildInputs = [
|
2020-06-24 11:50:43 -07:00
|
|
|
meson ninja pkg-config wayland scdoc
|
2019-12-08 04:56:56 -08:00
|
|
|
];
|
2019-03-11 09:18:19 -07:00
|
|
|
|
2017-09-26 08:24:13 -07:00
|
|
|
buildInputs = [
|
2019-03-11 09:18:19 -07:00
|
|
|
wayland libxkbcommon pcre json_c dbus libevdev
|
2020-05-08 02:45:27 -07:00
|
|
|
pango cairo libinput libcap pam gdk-pixbuf librsvg
|
2019-03-11 09:18:19 -07:00
|
|
|
wlroots wayland-protocols
|
2017-09-26 08:24:13 -07:00
|
|
|
];
|
2016-07-17 00:31:41 -07:00
|
|
|
|
2019-03-11 09:18:19 -07:00
|
|
|
mesonFlags = [
|
2020-06-24 11:50:43 -07:00
|
|
|
"-Ddefault-wallpaper=false"
|
2019-03-11 09:32:38 -07:00
|
|
|
];
|
2016-07-17 00:31:41 -07:00
|
|
|
|
2017-09-26 08:24:13 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-06-24 11:50:43 -07: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-03-31 18:11:51 -07:00
|
|
|
homepage = "https://swaywm.org";
|
2020-06-24 11:50:43 -07:00
|
|
|
changelog = "https://github.com/swaywm/sway/releases/tag/${version}";
|
2017-09-26 08:24:13 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2019-12-26 06:13:48 -08:00
|
|
|
maintainers = with maintainers; [ primeos synthetica ma27 ];
|
2017-09-26 08:24:13 -07:00
|
|
|
};
|
|
|
|
}
|