3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/browsers/falkon/default.nix

58 lines
1.4 KiB
Nix
Raw Normal View History

2020-05-21 16:28:29 +01:00
{ stdenv, mkDerivation, lib, fetchFromGitHub, fetchpatch
, cmake, extra-cmake-modules, pkg-config, qmake
2018-11-05 21:12:25 +00:00
, libpthreadstubs, libxcb, libXdmcp
, qtsvg, qttools, qtwebengine, qtx11extras
2020-06-03 10:12:46 +01:00
, qtwayland, wrapQtAppsHook
2018-11-05 21:12:25 +00:00
, kwallet
}:
2017-09-11 11:08:45 +01:00
mkDerivation rec {
pname = "falkon";
version = "3.1.0";
2017-09-11 11:08:45 +01:00
src = fetchFromGitHub {
owner = "KDE";
repo = "falkon";
2018-03-05 06:37:23 +00:00
rev = "v${version}";
sha256 = "1w64slh9wpcfi4v7ds9wci1zvwh0dh787ndpi6hd4kmdgnswvsw7";
2017-09-11 11:08:45 +01:00
};
2020-05-21 16:28:29 +01:00
patches = [
# fixes build with qt5 5.14
(fetchpatch {
url = "https://github.com/KDE/falkon/commit/bbde5c6955c43bc744ed2c4024598495de908f2a.diff";
sha256 = "0f7qcddvvdnij3di0acg7jwvwfwyd0xizlav4wccclbj8x7qp5ld";
})
];
2017-09-11 11:08:45 +01:00
preConfigure = ''
export NONBLOCK_JS_DIALOGS=true
export KDE_INTEGRATION=true
export GNOME_INTEGRATION=false
export FALKON_PREFIX=$out
'';
buildInputs = [
libpthreadstubs libxcb libXdmcp
2018-11-05 21:12:25 +00:00
qtsvg qttools qtwebengine qtx11extras
2017-09-11 11:08:45 +01:00
kwallet
2018-11-05 21:12:25 +00:00
] ++ lib.optionals stdenv.isLinux [ qtwayland ];
2017-09-11 11:08:45 +01:00
2020-06-03 10:12:46 +01:00
nativeBuildInputs = [
cmake
extra-cmake-modules
pkg-config
2020-06-03 10:12:46 +01:00
qmake
qttools
wrapQtAppsHook
];
2017-09-11 11:08:45 +01:00
meta = with lib; {
2017-09-11 11:08:45 +01:00
description = "QtWebEngine based cross-platform web browser";
homepage = "https://community.kde.org/Incubator/Projects/Falkon";
2017-09-11 11:08:45 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};
}