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)
32 lines
945 B
Nix
32 lines
945 B
Nix
{ lib, stdenv, makeWrapper, alsa-lib, pkg-config, fetchFromGitHub, gtk3, gnome, gdk-pixbuf, librsvg, wrapGAppsHook3 }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "gvolicon";
|
|
version = "unstable-2014-04-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Unia";
|
|
repo = "gvolicon";
|
|
rev = "0d65a396ba11f519d5785c37fec3e9a816217a07";
|
|
sha256 = "sha256-lm5OfryV1/1T1RgsVDdp0Jg5rh8AND8M3ighfrznKes=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper ];
|
|
buildInputs = [
|
|
alsa-lib gtk3 gdk-pixbuf gnome.adwaita-icon-theme
|
|
librsvg wrapGAppsHook3
|
|
];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-D_POSIX_C_SOURCE";
|
|
|
|
meta = {
|
|
description = "A simple and lightweight volume icon that sits in your system tray";
|
|
homepage = "https://github.com/Unia/gvolicon";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ lib.maintainers.bennofs ];
|
|
mainProgram = "gvolicon";
|
|
};
|
|
}
|