4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ lib, 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 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 ];
|
|
};
|
|
}
|