qtpass: fix missing app icon and name when running under Wayland
Patch has been upstreamed and should be safe to remove in versions > 1.3.0
This commit is contained in:
parent
33b67761be
commit
392763aea6
@ -1,4 +1,6 @@
|
|||||||
{ stdenv, mkDerivation, fetchFromGitHub, git, gnupg, pass, qtbase, qtsvg, qttools, qmake, makeWrapper }:
|
{ stdenv, mkDerivation, fetchFromGitHub, fetchpatch
|
||||||
|
, git, gnupg, pass, qtbase, qtsvg, qttools, qmake, makeWrapper
|
||||||
|
}:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "qtpass";
|
pname = "qtpass";
|
||||||
@ -15,6 +17,15 @@ mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper qmake ];
|
nativeBuildInputs = [ makeWrapper qmake ];
|
||||||
|
|
||||||
|
# Fix missing app icon on Wayland. Has been upstreamed and should be safe to
|
||||||
|
# remove in versions > 1.3.0
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/IJHack/QtPass/commit/aba8c4180f0ab3d66c44f88b21f137b19d17bde8.patch";
|
||||||
|
sha256 = "009bcq0d75khmaligzd7736xdzy6a8s1m9dgqybn70h801h92fcr";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
qtWrapperArgs = [
|
qtWrapperArgs = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user