Merge pull request #91814 from tpanum/master

This commit is contained in:
Vladyslav M 2020-07-28 09:29:41 +03:00 committed by GitHub
commit 80b1900318
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 12 deletions

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "gnome-shell-arc-menu";
version = "43";
version = "47";
src = fetchFromGitLab {
owner = "LinxGem33";
owner = "arcmenu-team";
repo = "Arc-Menu";
rev = "v${version}-Stable";
sha256 = "1rspl89bxqy0wla8cj0h1d29gp38xg1vmvhc1qg7bl46ank4yp5q";
sha256 = "1hhjxdm1sm9pddhkkxx532hqqiv9ghvqgn9xszg1jwhj29380fv6";
};
patches = [

View File

@ -1,12 +1,11 @@
--- a/extension.js
+++ b/extension.js
@@ -29,6 +29,8 @@
* https://github.com/The-Panacea-Projects/Gnomenu
*/
+
+imports.gi.GIRepository.Repository.prepend_search_path('@gmenu_path@');
// Import Libraries
const Main = imports.ui.main;
@@ -23,6 +23,8 @@
const Me = imports.misc.extensionUtils.getCurrentExtension();
+imports.gi.GIRepository.Repository.prepend_search_path('@gmenu_path@');
+
const {GLib, Gio, St} = imports.gi;
const Constants = Me.imports.constants;
const Controller = Me.imports.controller;