nixpkgs/pkgs/applications/window-managers/sway/default.nix

52 lines
1.3 KiB
Nix
Raw Normal View History

2019-06-03 13:25:00 +00:00
{ stdenv, fetchFromGitHub, makeWrapper
, meson, ninja
, pkgconfig, scdoc
, wayland, libxkbcommon, pcre, json_c, dbus, libevdev
, pango, cairo, libinput, libcap, pam, gdk_pixbuf
2019-06-03 13:25:00 +00:00
, wlroots, wayland-protocols, swaybg
}:
2017-10-17 01:47:59 +00:00
stdenv.mkDerivation rec {
pname = "sway";
2019-06-03 13:25:00 +00:00
version = "1.1.1";
2016-07-17 07:31:41 +00:00
src = fetchFromGitHub {
2017-11-07 21:16:50 +00:00
owner = "swaywm";
repo = "sway";
2017-11-07 21:16:50 +00:00
rev = version;
2019-06-03 13:25:00 +00:00
sha256 = "0yhn9zdg9mzfhn97c440lk3pw6122nrhx0is5sqmvgr6p814f776";
};
2016-07-17 07:31:41 +00:00
patches = [
./sway-config-no-nix-store-references.patch
./load-configuration-from-etc.patch
];
2019-06-03 13:25:00 +00:00
nativeBuildInputs = [ pkgconfig meson ninja scdoc makeWrapper ];
buildInputs = [
wayland libxkbcommon pcre json_c dbus libevdev
pango cairo libinput libcap pam gdk_pixbuf
wlroots wayland-protocols
];
2016-07-17 07:31:41 +00:00
2017-10-24 15:43:19 +00:00
enableParallelBuilding = true;
2016-07-17 07:31:41 +00:00
mesonFlags = [
"-Ddefault-wallpaper=false" "-Dxwayland=enabled" "-Dgdk-pixbuf=enabled"
"-Dtray=enabled" "-Dman-pages=enabled"
];
2016-07-17 07:31:41 +00:00
2019-06-03 13:25:00 +00:00
postInstall = ''
wrapProgram $out/bin/sway --prefix PATH : "${swaybg}/bin"
'';
meta = with stdenv.lib; {
description = "i3-compatible tiling Wayland compositor";
homepage = https://swaywm.org;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos synthetica ];
};
}