joplin-desktop: wrap to avoid crashing due to lack of schemas

This commit is contained in:
Will Dietz 2019-04-07 00:58:27 -05:00
parent 1f4d5433a9
commit 09462ddd06

View file

@ -1,4 +1,4 @@
{ stdenv, appimage-run, fetchurl }:
{ stdenv, appimage-run, fetchurl, gsettings-desktop-schemas, gtk3, gobject-introspection, wrapGAppsHook }:
let
version = "1.0.142";
@ -12,7 +12,8 @@ in
inherit sha256;
};
buildInputs = [ appimage-run ];
nativeBuildInputs = [ wrapGAppsHook ];
buildInputs = [ appimage-run gtk3 gsettings-desktop-schemas gobject-introspection ];
unpackPhase = ":";