summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2021-11-26 18:07:53 +0800
committerGitHub <noreply@github.com>2021-11-26 18:07:53 +0800
commit89baac26783eef867273a29dcec13a980b208e08 (patch)
tree74f72ac9b568edc9320806e3c2a893d2de19b67a /pkgs/tools
parent27abb57b7fff5c4164de6ec3dd6840177e83a11e (diff)
parent1bf1adbf0b04cdb546a6a4b9779668013efaf447 (diff)
downloadnixpkgs-89baac26783eef867273a29dcec13a980b208e08.tar
nixpkgs-89baac26783eef867273a29dcec13a980b208e08.tar.gz
nixpkgs-89baac26783eef867273a29dcec13a980b208e08.tar.bz2
nixpkgs-89baac26783eef867273a29dcec13a980b208e08.tar.lz
nixpkgs-89baac26783eef867273a29dcec13a980b208e08.tar.xz
nixpkgs-89baac26783eef867273a29dcec13a980b208e08.tar.zst
nixpkgs-89baac26783eef867273a29dcec13a980b208e08.zip
Merge pull request #147384 from florentc/xob
xob: 0.2 -> 0.3
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/X11/xob/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/tools/X11/xob/default.nix b/pkgs/tools/X11/xob/default.nix
index 754904449ef..71e50248df9 100644
--- a/pkgs/tools/X11/xob/default.nix
+++ b/pkgs/tools/X11/xob/default.nix
@@ -2,17 +2,17 @@
 
 stdenv.mkDerivation rec {
   pname = "xob";
-  version = "0.2";
+  version = "0.3";
 
   src = fetchFromGitHub {
     owner = "florentc";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0jbj61adwrpscfaadjman4hbyxhxv3ac8b4d88d623samx6kbvkk";
+    sha256 = "1x4aafiyd9k4y8cmvn7rgfif3g5s5hhlbj5nz71qsyqg21nn7hrw";
   };
 
   nativeBuildInputs = [ pkg-config ];
-  buildInputs = [ xorg.libX11 libconfig ];
+  buildInputs = [ xorg.libX11 xorg.libXrender libconfig ];
 
   makeFlags = [ "prefix=$(out)" ];
 
@@ -20,16 +20,16 @@ stdenv.mkDerivation rec {
     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).
+      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).
     '';
     inherit (src.meta) homepage;
     license = licenses.gpl3Plus;
     platforms = platforms.unix;
-    maintainers = with maintainers; [ ];
+    maintainers = with maintainers; [ florentc ];
   };
 }