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)
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, vala
|
|
, gtk3
|
|
, glib
|
|
, gtk-layer-shell
|
|
, dbus
|
|
, dbus-glib
|
|
, librsvg
|
|
, gobject-introspection
|
|
, gdk-pixbuf
|
|
, wrapGAppsHook3
|
|
, pamixer
|
|
, brightnessctl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "avizo";
|
|
version = "1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "misterdanb";
|
|
repo = "avizo";
|
|
rev = version;
|
|
sha256 = "sha256-Vj8OrNlAstl0AXTeVAPdEf5JgnAmJwl9s3Jdc0ZiYQc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config vala gobject-introspection wrapGAppsHook3 ];
|
|
|
|
buildInputs = [ dbus dbus-glib gdk-pixbuf glib gtk-layer-shell gtk3 librsvg ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/volumectl --suffix PATH : $out/bin:${lib.makeBinPath ([ pamixer ])}
|
|
wrapProgram $out/bin/lightctl --suffix PATH : $out/bin:${lib.makeBinPath ([ brightnessctl ])}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A neat notification daemon for Wayland";
|
|
homepage = "https://github.com/misterdanb/avizo";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.berbiche ];
|
|
};
|
|
}
|