waybox: init at unstable-2020-05-01

master
AndersonTorres 2021-02-01 18:58:44 -03:00
parent ad8bfd40af
commit f5e4a32d4b
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, meson
, ninja
, libxkbcommon
, wayland
, wayland-protocols
, wlroots
, pixman
, udev
, libGL
}:
stdenv.mkDerivation rec {
pname = "waybox";
version = "unstable-2020-05-01";
src = fetchFromGitHub {
owner = "wizbright";
repo = pname;
rev = "93811898f0eea3035145f593938d49d5af759b46";
sha256 = "IOdKOqAQD87Rs3td8NVEgMnRF6kQSuQ64UVqeVqMBSM=";
};
nativeBuildInputs = [ pkg-config meson ninja ];
buildInputs = [
libxkbcommon
wayland
wayland-protocols
wlroots
pixman
udev
libGL
];
meta = with lib; {
homepage = "https://github.com/wizbright/waybox";
description = "An openbox clone on Wayland";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux;
};
}

View File

@ -22767,6 +22767,8 @@ in
i3-wk-switch = callPackage ../applications/window-managers/i3/wk-switch.nix { };
waybox = callPackage ../applications/window-managers/waybox { };
windowchef = callPackage ../applications/window-managers/windowchef/default.nix { };
wmfocus = callPackage ../applications/window-managers/i3/wmfocus.nix { };