nixpkgs/pkgs/by-name/xo/xob/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

37 lines
1.2 KiB
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, xorg, libconfig }:
stdenv.mkDerivation rec {
pname = "xob";
version = "0.3";
src = fetchFromGitHub {
owner = "florentc";
repo = pname;
rev = "v${version}";
sha256 = "1x4aafiyd9k4y8cmvn7rgfif3g5s5hhlbj5nz71qsyqg21nn7hrw";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ xorg.libX11 xorg.libXrender libconfig ];
makeFlags = [ "prefix=$(out)" ];
meta = with lib; {
description = "Lightweight overlay bar for the X Window System";
longDescription = ''
A lightweight configurable overlay volume/backlight/progress/anything bar
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; [ florentc ];
mainProgram = "xob";
};
}