mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
xob: init at 0.1.1
This commit is contained in:
parent
d0b8d591e7
commit
b60a1b6cfd
35
pkgs/tools/X11/xob/default.nix
Normal file
35
pkgs/tools/X11/xob/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ stdenv, fetchFromGitHub, pkg-config, xorg, libconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xob";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "florentc";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0i163avpij8iy04a0wsds237sjqi5dfvi6ny2z8zicnl4crp34xg";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ xorg.libX11 libconfig ];
|
||||
|
||||
makeFlags = [ "prefix=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A lightweight overlay bar for the X Window System";
|
||||
longDescription = ''
|
||||
A lightweight configurable overlay volume/backlight/progress/anything bar
|
||||
for the X Window System. 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).
|
||||
'';
|
||||
inherit (src.meta) homepage;
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ primeos ];
|
||||
};
|
||||
}
|
@ -2880,6 +2880,8 @@ in
|
||||
|
||||
wl-clipboard = callPackage ../tools/misc/wl-clipboard { };
|
||||
|
||||
xob = callPackage ../tools/X11/xob { };
|
||||
|
||||
z-lua = callPackage ../tools/misc/z-lua { };
|
||||
|
||||
zabbix-cli = callPackage ../tools/misc/zabbix-cli { };
|
||||
|
Loading…
Reference in New Issue
Block a user