2017-09-26 16:24:13 +01:00
|
|
|
{ stdenv, fetchFromGitHub
|
2017-10-24 16:43:19 +01:00
|
|
|
, cmake, pkgconfig, asciidoc, libxslt, docbook_xsl
|
2018-07-17 21:11:16 +01:00
|
|
|
, wayland, wlc, libxkbcommon, pcre, json_c, dbus
|
2017-10-24 16:43:19 +01:00
|
|
|
, pango, cairo, libinput, libcap, pam, gdk_pixbuf, libpthreadstubs
|
2017-09-26 16:24:13 +01:00
|
|
|
, libXdmcp
|
2017-10-24 16:43:19 +01:00
|
|
|
, buildDocs ? true
|
2015-10-24 00:32:20 +01:00
|
|
|
}:
|
|
|
|
|
2017-10-17 02:47:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-09-26 16:24:13 +01:00
|
|
|
name = "sway-${version}";
|
2018-04-13 20:56:57 +01:00
|
|
|
version = "0.15.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;
|
2018-04-13 20:56:57 +01:00
|
|
|
sha256 = "1p9j5gv85lsgj4z28qja07dqyvqk41w6mlaflvvm9yxafx477g5n";
|
2017-09-26 16:24:13 +01:00
|
|
|
};
|
2016-07-17 08:31:41 +01:00
|
|
|
|
2017-09-26 16:24:13 +01:00
|
|
|
nativeBuildInputs = [
|
2017-10-24 16:43:19 +01:00
|
|
|
cmake pkgconfig
|
|
|
|
] ++ stdenv.lib.optional buildDocs [ asciidoc libxslt docbook_xsl ];
|
2017-09-26 16:24:13 +01:00
|
|
|
buildInputs = [
|
2018-07-17 21:11:16 +01:00
|
|
|
wayland wlc libxkbcommon pcre json_c dbus
|
2017-10-24 16:43:19 +01:00
|
|
|
pango cairo libinput libcap pam gdk_pixbuf libpthreadstubs
|
2017-09-26 16:24:13 +01:00
|
|
|
libXdmcp
|
|
|
|
];
|
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
|
|
|
|
2017-12-21 16:16:19 +00:00
|
|
|
cmakeFlags = "-DVERSION=${version} -DLD_LIBRARY_PATH=/run/opengl-driver/lib:/run/opengl-driver-32/lib";
|
2016-07-17 08:31:41 +01:00
|
|
|
|
2017-09-26 16:24:13 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "i3-compatible window manager for Wayland";
|
|
|
|
homepage = http://swaywm.org;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ primeos ]; # Trying to keep it up-to-date.
|
|
|
|
};
|
|
|
|
}
|