mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
33 lines
850 B
Nix
33 lines
850 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, gettext, glib, gtk3, libnotify, wrapGAppsHook3 }:
|
|
|
|
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 wrapGAppsHook3 ];
|
|
|
|
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 ];
|
|
};
|
|
}
|