Merge pull request #49806 from colemickens/falkon-qtwayland
falkon: enable qtwayland
This commit is contained in:
commit
bed0e8b089
|
@ -1,5 +1,9 @@
|
||||||
{ stdenv, fetchFromGitHub, cmake, extra-cmake-modules, pkgconfig, qmake
|
{ stdenv, lib, fetchFromGitHub, cmake, extra-cmake-modules, pkgconfig, qmake
|
||||||
, libpthreadstubs, libxcb, libXdmcp, qtsvg, qttools, qtwebengine, qtx11extras, kwallet }:
|
, libpthreadstubs, libxcb, libXdmcp
|
||||||
|
, qtsvg, qttools, qtwebengine, qtx11extras
|
||||||
|
, qtwayland
|
||||||
|
, kwallet
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "falkon-${version}";
|
name = "falkon-${version}";
|
||||||
|
@ -21,9 +25,9 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libpthreadstubs libxcb libXdmcp
|
libpthreadstubs libxcb libXdmcp
|
||||||
|
qtsvg qttools qtwebengine qtx11extras
|
||||||
kwallet
|
kwallet
|
||||||
qtsvg qtwebengine qtx11extras
|
] ++ lib.optionals stdenv.isLinux [ qtwayland ];
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig qmake qttools ];
|
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig qmake qttools ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue