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
|
2019-05-22 12:03:39 +01:00
|
|
|
, pango, cairo, libinput, libcap, pam, gdk-pixbuf
|
2019-06-03 14:25:00 +01:00
|
|
|
, wlroots, wayland-protocols, swaybg
|
2015-10-24 00:32:20 +01:00
|
|
|
}:
|
|
|
|
|
2017-10-17 02:47:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-11 16:18:19 +00:00
|
|
|
pname = "sway";
|
2019-08-27 10:07:16 +01:00
|
|
|
version = "1.2";
|
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;
|
2019-08-27 10:07:16 +01:00
|
|
|
sha256 = "0vch2zm5afc76ia78p3vg71zr2fyda67l9hd2h0x1jq3mnvfbxnd";
|
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-06-03 14:25:00 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig meson ninja scdoc makeWrapper ];
|
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
|
2019-05-22 12:03:39 +01:00
|
|
|
pango cairo libinput libcap pam gdk-pixbuf
|
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
|
|
|
|
2019-06-03 14:25:00 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/sway --prefix PATH : "${swaybg}/bin"
|
|
|
|
'';
|
|
|
|
|
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";
|
2018-10-23 19:34:59 +01:00
|
|
|
homepage = https://swaywm.org;
|
2017-09-26 16:24:13 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2019-03-11 16:18:19 +00:00
|
|
|
maintainers = with maintainers; [ primeos synthetica ];
|
2017-09-26 16:24:13 +01:00
|
|
|
};
|
|
|
|
}
|