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

50 lines
1.2 KiB
Nix
Raw Normal View History

2019-06-03 16:25:00 +03:00
{ stdenv, fetchFromGitHub, makeWrapper
, meson, ninja
, pkgconfig, scdoc
, wayland, libxkbcommon, pcre, json_c, dbus, libevdev
2019-05-22 14:03:39 +03:00
, pango, cairo, libinput, libcap, pam, gdk-pixbuf
2019-12-08 15:56:56 +03:00
, wlroots, wayland-protocols
}:
2017-10-17 04:47:59 +03:00
stdenv.mkDerivation rec {
2019-12-08 15:56:56 +03:00
pname = "sway-unwrapped";
2019-08-27 12:07:16 +03:00
version = "1.2";
2016-07-17 10:31:41 +03:00
src = fetchFromGitHub {
2017-11-08 00:16:50 +03:00
owner = "swaywm";
repo = "sway";
2017-11-08 00:16:50 +03:00
rev = version;
2019-08-27 12:07:16 +03:00
sha256 = "0vch2zm5afc76ia78p3vg71zr2fyda67l9hd2h0x1jq3mnvfbxnd";
};
2016-07-17 10:31:41 +03:00
patches = [
./sway-config-no-nix-store-references.patch
./load-configuration-from-etc.patch
];
2019-12-08 15:56:56 +03:00
nativeBuildInputs = [
pkgconfig meson ninja scdoc
];
buildInputs = [
wayland libxkbcommon pcre json_c dbus libevdev
2019-05-22 14:03:39 +03:00
pango cairo libinput libcap pam gdk-pixbuf
wlroots wayland-protocols
];
2016-07-17 10:31:41 +03:00
2017-10-24 18:43:19 +03:00
enableParallelBuilding = true;
2016-07-17 10:31:41 +03:00
mesonFlags = [
"-Ddefault-wallpaper=false" "-Dxwayland=enabled" "-Dgdk-pixbuf=enabled"
"-Dtray=enabled" "-Dman-pages=enabled"
];
2016-07-17 10:31:41 +03:00
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 ];
};
}