Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.0 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
meson,
ninja,
pkg-config,
vala,
libadwaita,
libgee,
gettext,
glib,
granite7,
gtk4,
switchboard,
elementary-notifications,
}:
stdenv.mkDerivation rec {
pname = "switchboard-plug-notifications";
version = "8.0.0";
src = fetchFromGitHub {
owner = "elementary";
repo = "switchboard-plug-notifications";
rev = version;
sha256 = "sha256-53rpnp1RWdPofY00XWKiz8WDPC7RNMaGQFHBDzjsIt4=";
};
nativeBuildInputs = [
gettext # msgfmt
glib # glib-compile-resources
meson
ninja
pkg-config
vala
];
buildInputs = [
elementary-notifications
granite7
gtk4
libadwaita
libgee
switchboard
];
passthru = {
updateScript = nix-update-script { };
};
meta = with lib; {
description = "Switchboard Notifications Plug";
homepage = "https://github.com/elementary/switchboard-plug-notifications";
license = licenses.gpl2Plus;
platforms = platforms.linux;
teams = [ teams.pantheon ];
};
}