63 lines
1 KiB
Nix
63 lines
1 KiB
Nix
{
|
|
stdenv,
|
|
mkDerivation,
|
|
lib,
|
|
cmake,
|
|
extra-cmake-modules,
|
|
pkg-config,
|
|
libpthreadstubs,
|
|
libxcb,
|
|
libXdmcp,
|
|
qtsvg,
|
|
qttools,
|
|
qtwebengine,
|
|
qtx11extras,
|
|
qtwayland,
|
|
wrapQtAppsHook,
|
|
kwallet,
|
|
kpurpose,
|
|
karchive,
|
|
kio,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "falkon";
|
|
|
|
preConfigure = ''
|
|
export NONBLOCK_JS_DIALOGS=true
|
|
export KDE_INTEGRATION=true
|
|
export GNOME_INTEGRATION=false
|
|
export FALKON_PREFIX=$out
|
|
'';
|
|
|
|
buildInputs = [
|
|
libpthreadstubs
|
|
libxcb
|
|
libXdmcp
|
|
qtsvg
|
|
qttools
|
|
qtwebengine
|
|
qtx11extras
|
|
kwallet
|
|
kpurpose
|
|
karchive
|
|
kio
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [ qtwayland ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
pkg-config
|
|
qttools
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "QtWebEngine based cross-platform web browser";
|
|
mainProgram = "falkon";
|
|
homepage = "https://www.falkon.org";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|