94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
76 lines
1.2 KiB
Nix
76 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cairo
|
|
, glib
|
|
, libdrm
|
|
, libinput
|
|
, libxcb
|
|
, libxkbcommon
|
|
, libxml2
|
|
, gettext
|
|
, meson
|
|
, ninja
|
|
, pango
|
|
, pkg-config
|
|
, scdoc
|
|
, wayland-scanner
|
|
, wayland
|
|
, wayland-protocols
|
|
, wlroots_0_16
|
|
, xcbutilwm
|
|
, xwayland
|
|
}:
|
|
|
|
let
|
|
wlroots = wlroots_0_16;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "labwc";
|
|
version = "0.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "labwc";
|
|
repo = "labwc";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-d8cbY1NbW5LLKxkoh+PFelPhikDOwBrFt3jfizKSb/0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
scdoc
|
|
wayland-scanner
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
glib
|
|
libdrm
|
|
libinput
|
|
libxcb
|
|
libxkbcommon
|
|
libxml2
|
|
pango
|
|
wayland
|
|
wayland-protocols
|
|
wlroots
|
|
xcbutilwm
|
|
xwayland
|
|
];
|
|
|
|
mesonFlags = [
|
|
(lib.mesonEnable "xwayland" true)
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/labwc/labwc";
|
|
description = "A Wayland stacking compositor, similar to Openbox";
|
|
changelog = "https://raw.githubusercontent.com/labwc/labwc/${finalAttrs.version}/NEWS.md";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
inherit (wayland.meta) platforms;
|
|
};
|
|
})
|