2019-06-03 06:25:00 -07:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
2019-03-11 09:18:19 -07:00
|
|
|
, meson, ninja
|
|
|
|
, pkgconfig, scdoc
|
|
|
|
, wayland, 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-01-01 08:33:31 -08:00
|
|
|
version = "1.4";
|
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-01-01 08:33:31 -08:00
|
|
|
sha256 = "11qf89y3q92g696a6f4d23qb44gqixg6qxq740vwv2jw59ms34ja";
|
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
|
|
|
];
|
|
|
|
|
2019-12-08 04:56:56 -08:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig meson ninja scdoc
|
|
|
|
];
|
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
|
|
|
|
2017-10-24 08:43:19 -07:00
|
|
|
enableParallelBuilding = true;
|
2016-07-17 00:31:41 -07:00
|
|
|
|
2019-03-11 09:18:19 -07:00
|
|
|
mesonFlags = [
|
2019-03-11 09:32:38 -07:00
|
|
|
"-Ddefault-wallpaper=false" "-Dxwayland=enabled" "-Dgdk-pixbuf=enabled"
|
|
|
|
"-Dtray=enabled" "-Dman-pages=enabled"
|
|
|
|
];
|
2016-07-17 00:31:41 -07:00
|
|
|
|
2017-09-26 08:24:13 -07:00
|
|
|
meta = with stdenv.lib; {
|
2019-03-11 09:32:38 -07:00
|
|
|
description = "i3-compatible tiling Wayland compositor";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://swaywm.org";
|
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
|
|
|
};
|
|
|
|
}
|