pantheon.switchboard-plug-notifications: 2.2.0 -> 8.0.0

https://github.com/elementary/switchboard-plug-notifications/compare/2.2.0...8.0.0
This commit is contained in:
Bobby Rong 2024-05-17 20:38:20 +08:00
parent 3d09da64ee
commit 6f2466cfc9
No known key found for this signature in database

View File

@ -2,38 +2,29 @@
, stdenv
, fetchFromGitHub
, nix-update-script
, fetchpatch
, meson
, ninja
, pkg-config
, vala
, libadwaita
, libgee
, granite
, gtk3
, granite7
, gtk4
, switchboard
, elementary-notifications
}:
stdenv.mkDerivation rec {
pname = "switchboard-plug-notifications";
version = "2.2.0";
version = "8.0.0";
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
sha256 = "0zzhgs8m1y7ab31hbn7v8g8k7rx51gqajl243zmysn86lfqk8iay";
sha256 = "sha256-53rpnp1RWdPofY00XWKiz8WDPC7RNMaGQFHBDzjsIt4=";
};
patches = [
# Upstream code not respecting our localedir
# https://github.com/elementary/switchboard-plug-notifications/pull/83
(fetchpatch {
url = "https://github.com/elementary/switchboard-plug-notifications/commit/2e0320aab62b6932e8ef5f941d02e244de381957.patch";
sha256 = "0rcamasq837grck0i2yx6psggzrhv7p7m3mra5l0k9zsjxgar92v";
})
];
nativeBuildInputs = [
meson
ninja
@ -43,8 +34,9 @@ stdenv.mkDerivation rec {
buildInputs = [
elementary-notifications
granite
gtk3
granite7
gtk4
libadwaita
libgee
switchboard
];