summary refs log tree commit diff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2019-10-27 12:48:57 +0100
committerEmery Hemingway <ehmry@posteo.net>2019-10-28 16:56:43 +0100
commitb60a1b6cfdd329694f44cfd0781a10a6e1afad1d (patch)
tree6cc0ff8e4788136918823d1c50e5e0f2a440f289 /pkgs/tools/X11
parentd0b8d591e7aa4131ba4b704ecd2ae2503b4a94ae (diff)
downloadnixpkgs-b60a1b6cfdd329694f44cfd0781a10a6e1afad1d.tar
nixpkgs-b60a1b6cfdd329694f44cfd0781a10a6e1afad1d.tar.gz
nixpkgs-b60a1b6cfdd329694f44cfd0781a10a6e1afad1d.tar.bz2
nixpkgs-b60a1b6cfdd329694f44cfd0781a10a6e1afad1d.tar.lz
nixpkgs-b60a1b6cfdd329694f44cfd0781a10a6e1afad1d.tar.xz
nixpkgs-b60a1b6cfdd329694f44cfd0781a10a6e1afad1d.tar.zst
nixpkgs-b60a1b6cfdd329694f44cfd0781a10a6e1afad1d.zip
xob: init at 0.1.1
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/xob/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/tools/X11/xob/default.nix b/pkgs/tools/X11/xob/default.nix
new file mode 100644
index 00000000000..164802470e5
--- /dev/null
+++ b/pkgs/tools/X11/xob/default.nix
@@ -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 ];
+  };
+}