summary refs log tree commit diff
path: root/pkgs/tools/X11/xob/default.nix
blob: cf74fa3d867b4f7b8cda4ac6483e9c0e6ba494a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchFromGitHub, pkg-config, xorg, libconfig }:

stdenv.mkDerivation rec {
  pname = "xob";
  version = "0.2";

  src = fetchFromGitHub {
    owner = "florentc";
    repo = pname;
    rev = "v${version}";
    sha256 = "0jbj61adwrpscfaadjman4hbyxhxv3ac8b4d88d623samx6kbvkk";
  };

  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 ];
  };
}