nixpkgs/pkgs/applications/window-managers/wayfire/wf-shell.nix
2025-11-09 01:04:14 +01:00

62 lines
1,019 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
meson,
ninja,
pkg-config,
wayland-scanner,
wayfire,
alsa-lib,
gtkmm3,
gtk-layer-shell,
pulseaudio,
libdbusmenu-gtk3,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "wf-shell";
version = "0.10.0";
outputs = [
"out"
"man"
];
src = fetchFromGitHub {
owner = "WayfireWM";
repo = "wf-shell";
rev = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-PLTeFGecxVwU2LdwnDwiWB1OcbaZjJemMpT0pcCFf/w=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
wayland-scanner
];
buildInputs = [
wayfire
alsa-lib
gtkmm3
gtk-layer-shell
pulseaudio
libdbusmenu-gtk3
];
mesonFlags = [ "--sysconfdir /etc" ];
meta = {
homepage = "https://github.com/WayfireWM/wf-shell";
description = "GTK3-based panel for Wayfire";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
wucke13
wineee
];
platforms = lib.platforms.unix;
};
})