Skip to content

Commit 47d453b

Browse files
committed
waybox: unstable-2021-04-07 -> 0.2.0
1 parent d386e73 commit 47d453b

2 files changed

Lines changed: 12 additions & 6 deletions

File tree

pkgs/applications/window-managers/waybox/default.nix

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
, fetchFromGitHub
44
, pkg-config
55
, meson
6+
, cmake
67
, ninja
78
, libxkbcommon
89
, wayland
@@ -12,29 +13,34 @@
1213
, pixman
1314
, udev
1415
, libGL
16+
, libxml2
1517
, mesa
1618
}:
1719

1820
stdenv.mkDerivation rec {
1921
pname = "waybox";
20-
version = "unstable-2021-04-07";
22+
version = "0.2.0";
2123

2224
src = fetchFromGitHub {
2325
owner = "wizbright";
2426
repo = pname;
25-
rev = "309ccd2faf08079e698104b19eff32b3a255b947";
26-
hash = "sha256-G32cGmOwmnuVlj1hCq9NRti6plJbkAktfzM4aYzQ+k8=";
27+
rev = version;
28+
hash = "sha256-G8dRa4hgev3x58uqp5To5OzF3zcPSuT3NL9MPnWf2M8=";
2729
};
2830

2931
nativeBuildInputs = [
3032
pkg-config
3133
meson
34+
cmake
3235
ninja
3336
wayland-scanner
3437
];
3538

39+
dontUseCmakeConfigure = true;
40+
3641
buildInputs = [
3742
libxkbcommon
43+
libxml2
3844
wayland
3945
wayland-protocols
4046
wlroots
@@ -44,6 +50,8 @@ stdenv.mkDerivation rec {
4450
mesa # for libEGL
4551
];
4652

53+
passthru.providedSessions = [ "waybox" ];
54+
4755
meta = with lib; {
4856
homepage = "https://github.com/wizbright/waybox";
4957
description = "An openbox clone on Wayland";

pkgs/top-level/all-packages.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30633,9 +30633,7 @@ with pkgs;
3063330633

3063430634
i3-wk-switch = callPackage ../applications/window-managers/i3/wk-switch.nix { };
3063530635

30636-
waybox = callPackage ../applications/window-managers/waybox {
30637-
wlroots = wlroots_0_14;
30638-
};
30636+
waybox = callPackage ../applications/window-managers/waybox { };
3063930637

3064030638
workstyle = callPackage ../applications/window-managers/i3/workstyle.nix { };
3064130639

0 commit comments

Comments
 (0)