lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #225571: gnomeExtensions.gsconnect: 54 -> 55

authored by

piegames and committed by
GitHub
b3ad93ad 6fc4e722

+17 -12
+2 -2
pkgs/desktops/gnome/extensions/gsconnect/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "gnome-shell-extension-gsconnect"; 26 - version = "54"; 26 + version = "55"; 27 27 28 28 outputs = [ "out" "installedTests" ]; 29 29 ··· 31 31 owner = "GSConnect"; 32 32 repo = "gnome-shell-extension-gsconnect"; 33 33 rev = "v${version}"; 34 - hash = "sha256-Dt5T5luuKpSkoOs6MjOBg/yMm52hRfymKBeRklPWy+M="; 34 + hash = "sha256-n6NbNgl+2FOhly/BeR7I6BvPOYe7leAdeAegaqhcGJU="; 35 35 }; 36 36 37 37 patches = [
+8 -6
pkgs/desktops/gnome/extensions/gsconnect/fix-paths.patch
··· 1 1 diff --git a/data/org.gnome.Shell.Extensions.GSConnect.desktop.in b/data/org.gnome.Shell.Extensions.GSConnect.desktop.in 2 - index ffb23342..b405c73b 100644 2 + index 3fb887c3..e8cbe1bd 100644 3 3 --- a/data/org.gnome.Shell.Extensions.GSConnect.desktop.in 4 4 +++ b/data/org.gnome.Shell.Extensions.GSConnect.desktop.in 5 - @@ -1,7 +1,7 @@ 5 + @@ -5,7 +5,7 @@ 6 6 [Desktop Entry] 7 7 Type=Application 8 8 Name=GSConnect ··· 12 12 NoDisplay=true 13 13 Icon=org.gnome.Shell.Extensions.GSConnect 14 14 diff --git a/src/extension.js b/src/extension.js 15 - index e7fd971a..8474bb3b 100644 15 + index 3fae443a..7aa19842 100644 16 16 --- a/src/extension.js 17 17 +++ b/src/extension.js 18 - @@ -1,5 +1,7 @@ 18 + @@ -4,6 +4,8 @@ 19 + 19 20 'use strict'; 20 21 21 22 +'@typelibPath@'.split(':').forEach(path => imports.gi.GIRepository.Repository.prepend_search_path(path)); ··· 24 25 const GObject = imports.gi.GObject; 25 26 const Gtk = imports.gi.Gtk; 26 27 diff --git a/src/prefs.js b/src/prefs.js 27 - index 922ea60c..2cd62eb5 100644 28 + index b8860c82..d6292606 100644 28 29 --- a/src/prefs.js 29 30 +++ b/src/prefs.js 30 - @@ -1,5 +1,7 @@ 31 + @@ -4,6 +4,8 @@ 32 + 31 33 'use strict'; 32 34 33 35 +'@typelibPath@'.split(':').forEach(path => imports.gi.GIRepository.Repository.prepend_search_path(path));
+7 -4
pkgs/desktops/gnome/extensions/gsconnect/installed-tests-path.patch
··· 1 1 diff --git a/installed-tests/meson.build b/installed-tests/meson.build 2 - index c7eff2fb..ef4f6052 100644 2 + index 5bc38bfd..02404c3a 100644 3 3 --- a/installed-tests/meson.build 4 4 +++ b/installed-tests/meson.build 5 - @@ -1,5 +1,5 @@ 5 + @@ -2,8 +2,8 @@ 6 + # 7 + # SPDX-License-Identifier: GPL-2.0-or-later 8 + 6 9 -installed_tests_execdir = join_paths(libexecdir, 'installed-tests', meson.project_name()) 7 10 -installed_tests_metadir = join_paths(datadir, 'installed-tests', meson.project_name()) 8 11 +installed_tests_execdir = join_paths(get_option('installed_test_prefix'), 'libexec', 'installed-tests', meson.project_name()) ··· 11 14 installed_tests_srcdir = meson.current_source_dir() 12 15 installed_tests_builddir = meson.current_build_dir() 13 16 diff --git a/meson_options.txt b/meson_options.txt 14 - index 8912e052..ca6ee5eb 100644 17 + index 745c541c..b4b602ca 100644 15 18 --- a/meson_options.txt 16 19 +++ b/meson_options.txt 17 - @@ -116,6 +116,13 @@ option( 20 + @@ -104,6 +104,13 @@ option( 18 21 description: 'Native Messaging Host directory for Mozilla' 19 22 ) 20 23