2021-10-11 20:52:07 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
|
|
|
, meson, ninja, pkg-config, vala
|
|
|
|
, gtk3, glib, gtk-layer-shell
|
|
|
|
, dbus, dbus-glib, librsvg
|
|
|
|
, gobject-introspection, gdk-pixbuf, wrapGAppsHook
|
|
|
|
}:
|
|
|
|
|
2022-01-10 03:24:05 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-10-11 20:52:07 +02:00
|
|
|
pname = "avizo";
|
2022-01-10 03:24:05 +01:00
|
|
|
# Note: remove the 'use-sysconfig' patch on the next update
|
|
|
|
version = "1.1";
|
2021-10-11 20:52:07 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "misterdanb";
|
|
|
|
repo = "avizo";
|
2022-01-10 03:24:05 +01:00
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-0BJodJ6WaHhuSph2D1AC+DMafctgiSCyaZ8MFn89AA8=";
|
2021-10-11 20:52:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config vala gobject-introspection wrapGAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = [ dbus dbus-glib gdk-pixbuf glib gtk-layer-shell gtk3 librsvg ];
|
|
|
|
|
2022-01-10 03:24:05 +01:00
|
|
|
patches = [
|
|
|
|
# Remove on next update
|
|
|
|
# See https://github.com/misterdanb/avizo/pull/30
|
|
|
|
./use-sysconfdir-instead-of-etc.patch
|
|
|
|
];
|
|
|
|
|
2021-10-11 20:52:07 +02:00
|
|
|
postInstall = ''
|
|
|
|
substituteInPlace "$out"/bin/volumectl \
|
|
|
|
--replace 'avizo-client' "$out/bin/avizo-client"
|
|
|
|
substituteInPlace "$out"/bin/lightctl \
|
|
|
|
--replace 'avizo-client' "$out/bin/avizo-client"
|
|
|
|
'';
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|