depot/third_party/nixpkgs/pkgs/tools/wayland/wob/default.nix
Default email dae973cb59 Project import generated by Copybara.
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
2023-03-08 18:32:21 +02:00

48 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, inih
, meson
, ninja
, pkg-config
, scdoc
, wayland-scanner
, wayland
, wayland-protocols
, libseccomp
}:
stdenv.mkDerivation rec {
pname = "wob";
version = "0.14.2";
src = fetchFromGitHub {
owner = "francma";
repo = pname;
rev = version;
sha256 = "sha256-u4jLVLGcMTgDEgN8jW5d59m3GorJX7Z6+qKhzvbON3k=";
};
strictDeps = true;
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
buildInputs = [ inih wayland wayland-protocols ]
++ lib.optional stdenv.isLinux libseccomp;
mesonFlags = lib.optional stdenv.isLinux "-Dseccomp=enabled";
meta = with lib; {
inherit (src.meta) homepage;
description = "A lightweight overlay bar for Wayland";
longDescription = ''
A lightweight overlay volume/backlight/progress/anything bar for Wayland,
inspired by xob.
'';
changelog = "https://github.com/francma/wob/releases/tag/${version}";
license = licenses.isc;
maintainers = with maintainers; [ primeos ];
platforms = platforms.linux;
};
}