nixpkgs-suyu/pkgs/applications/misc/cbatticon/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

32 lines
848 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, gettext, glib, gtk3, libnotify, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "cbatticon";
version = "1.6.13";
src = fetchFromGitHub {
owner = "valr";
repo = pname;
rev = version;
sha256 = "sha256-VQjJujF9lnVvQxV+0YqodLgnI9F90JKDAGBu5nM/Q/c=";
};
nativeBuildInputs = [ pkg-config gettext wrapGAppsHook ];
buildInputs = [ glib gtk3 libnotify ];
patchPhase = ''
sed -i -e 's/ -Wno-format//g' Makefile
'';
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
description = "Lightweight and fast battery icon that sits in the system tray";
mainProgram = "cbatticon";
homepage = "https://github.com/valr/cbatticon";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.domenkozar ];
};
}