2019-06-03 14:25:00 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
2019-03-11 16:18:19 +00:00
|
|
|
, meson, ninja
|
|
|
|
, pkgconfig, scdoc
|
|
|
|
, wayland, libxkbcommon, pcre, json_c, dbus, libevdev
|
2020-05-08 10:45:27 +01:00
|
|
|
, pango, cairo, libinput, libcap, pam, gdk-pixbuf, librsvg
|
2019-12-08 12:56:56 +00:00
|
|
|
, wlroots, wayland-protocols
|
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";
|
2020-01-01 16:33:31 +00:00
|
|
|
version = "1.4";
|
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;
|
2020-01-01 16:33:31 +00:00
|
|
|
sha256 = "11qf89y3q92g696a6f4d23qb44gqixg6qxq740vwv2jw59ms34ja";
|
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-03-11 16:32:38 +00:00
|
|
|
./sway-config-no-nix-store-references.patch
|
2019-04-27 21:38:18 +01:00
|
|
|
./load-configuration-from-etc.patch
|
2019-03-11 16:18:19 +00:00
|
|
|
];
|
|
|
|
|
2019-12-08 12:56:56 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig meson ninja scdoc
|
|
|
|
];
|
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
|
2019-03-11 16:18:19 +00:00
|
|
|
wlroots wayland-protocols
|
2017-09-26 16:24:13 +01:00
|
|
|
];
|
2016-07-17 08:31:41 +01:00
|
|
|
|
2017-10-24 16:43:19 +01:00
|
|
|
enableParallelBuilding = true;
|
2016-07-17 08:31:41 +01:00
|
|
|
|
2019-03-11 16:18:19 +00:00
|
|
|
mesonFlags = [
|
2019-03-11 16:32:38 +00:00
|
|
|
"-Ddefault-wallpaper=false" "-Dxwayland=enabled" "-Dgdk-pixbuf=enabled"
|
|
|
|
"-Dtray=enabled" "-Dman-pages=enabled"
|
|
|
|
];
|
2016-07-17 08:31:41 +01:00
|
|
|
|
2017-09-26 16:24:13 +01:00
|
|
|
meta = with stdenv.lib; {
|
2019-03-11 16:32:38 +00:00
|
|
|
description = "i3-compatible tiling Wayland compositor";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://swaywm.org";
|
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
|
|
|
};
|
|
|
|
}
|