Files
nixpkgs/pkgs/by-name/av/avizo/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

68 lines
1.2 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 {
pname = "avizo";
version = "1.3-unstable-2024-11-03";
src = fetchFromGitHub {
owner = "misterdanb";
repo = "avizo";
rev = "5efaa22968b2cc1a3c15a304cac3f22ec2727b17";
sha256 = "sha256-KYQPHVxjvqKt4d7BabplnrXP30FuBQ6jQ1NxzR5U7qI=";
};
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 = "Neat notification daemon for Wayland";
homepage = "https://github.com/misterdanb/avizo";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [
maintainers.berbiche
maintainers.flexiondotorg
];
};
}