mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #272691 from bobby285271/upd/cinnamon
cinnamon.cinnamon-screensaver: Update the pygobject 3.46 patch to use try/except
This commit is contained in:
commit
b482c6ff1b
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, pkg-config
|
||||
, meson
|
||||
, ninja
|
||||
@ -38,8 +39,12 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
patches = [
|
||||
# See https://github.com/linuxmint/cinnamon-screensaver/issues/446#issuecomment-1819580053
|
||||
./fix-broken-theming-with-pygobject-3-46.patch
|
||||
# Fix broken theming with pygobject >= 3.46.0
|
||||
# https://github.com/linuxmint/cinnamon-screensaver/issues/446
|
||||
(fetchpatch {
|
||||
url = "https://github.com/linuxmint/cinnamon-screensaver/commit/37ab8ed18f35591f2bd99043f12c06d98b4527db.patch";
|
||||
hash = "sha256-4YSithosyTLy8OFu6DEhLT4c+EGEg84EenTKAiBiWo4=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -1,17 +0,0 @@
|
||||
diff --git a/src/cinnamon-screensaver-main.py b/src/cinnamon-screensaver-main.py
|
||||
index 05b727c..a185159 100755
|
||||
--- a/src/cinnamon-screensaver-main.py
|
||||
+++ b/src/cinnamon-screensaver-main.py
|
||||
@@ -139,9 +139,9 @@ class Main(Gtk.Application):
|
||||
|
||||
fallback_prov = Gtk.CssProvider()
|
||||
|
||||
- if fallback_prov.load_from_data(fallback_css.encode()):
|
||||
- Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default(), fallback_prov, 600)
|
||||
- Gtk.StyleContext.reset_widgets(Gdk.Screen.get_default())
|
||||
+ fallback_prov.load_from_data(fallback_css.encode())
|
||||
+ Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default(), fallback_prov, 600)
|
||||
+ Gtk.StyleContext.reset_widgets(Gdk.Screen.get_default())
|
||||
|
||||
if __name__ == "__main__":
|
||||
setproctitle.setproctitle('cinnamon-screensaver')
|
Loading…
Reference in New Issue
Block a user