Skip to content

Commit

Permalink
appeditor: fix build with vala 0.46
Browse files Browse the repository at this point in the history
  • Loading branch information
worldofpeace committed Nov 7, 2019
1 parent 1e7ddf2 commit a6d3df1
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/applications/misc/appeditor/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ stdenv.mkDerivation rec {
libgee
];

patches = [
# See: https://github.com/donadigo/appeditor/issues/88
./fix-build-vala-0.46.patch
];

postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
Expand Down
22 changes: 22 additions & 0 deletions pkgs/applications/misc/appeditor/fix-build-vala-0.46.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
diff --git a/src/DesktopApp.vala b/src/DesktopApp.vala
index 0e6fa47..ebcde0c 100644
--- a/src/DesktopApp.vala
+++ b/src/DesktopApp.vala
@@ -130,7 +130,7 @@ public class AppEditor.DesktopApp : Object {

public unowned string get_path () {
if (path == null) {
- unowned string _path = info.get_string (KeyFileDesktop.KEY_PATH);
+ string _path = info.get_string (KeyFileDesktop.KEY_PATH);
if (_path == null) {
_path = "";
}
@@ -150,7 +150,7 @@ public class AppEditor.DesktopApp : Object {
}

public bool get_should_show () {
- return info.should_show () && !get_terminal ();
+ return info.should_show () && !get_terminal ();
}

public string[] get_categories () {

0 comments on commit a6d3df1

Please sign in to comment.