2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, xorg, libconfig }:
|
2019-10-27 11:48:57 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xob";
|
2021-11-23 08:56:47 +00:00
|
|
|
version = "0.3";
|
2019-10-27 11:48:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "florentc";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-11-23 08:56:47 +00:00
|
|
|
sha256 = "1x4aafiyd9k4y8cmvn7rgfif3g5s5hhlbj5nz71qsyqg21nn7hrw";
|
2019-10-27 11:48:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2021-11-23 08:56:47 +00:00
|
|
|
buildInputs = [ xorg.libX11 xorg.libXrender libconfig ];
|
2019-10-27 11:48:57 +00:00
|
|
|
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2024-06-07 07:46:46 +00:00
|
|
|
description = "Lightweight overlay bar for the X Window System";
|
2019-10-27 11:48:57 +00:00
|
|
|
longDescription = ''
|
|
|
|
A lightweight configurable overlay volume/backlight/progress/anything bar
|
2021-11-23 08:56:47 +00:00
|
|
|
for the X Window System (and Wayland compositors with XWayland). Each
|
|
|
|
time a new value is read on the standard input, it is displayed as a
|
|
|
|
tv-like bar over other windows. It then vanishes after a configurable
|
|
|
|
amount of time. A value followed by a bang '!' is displayed using an
|
|
|
|
alternate color to account for special states (e.g. muted audio). There
|
|
|
|
is also support for overflows (when the value exceeds the maximum).
|
2019-10-27 11:48:57 +00:00
|
|
|
'';
|
|
|
|
inherit (src.meta) homepage;
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.unix;
|
2021-11-23 08:56:47 +00:00
|
|
|
maintainers = with maintainers; [ florentc ];
|
2023-11-23 21:09:35 +00:00
|
|
|
mainProgram = "xob";
|
2019-10-27 11:48:57 +00:00
|
|
|
};
|
|
|
|
}
|