095219565f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/falkon/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 3.0.1 with grep in /nix/store/daa848kdkmv0l77b796h86djs0yn2wwh-falkon-3.0.1 - directory tree listing: https://gist.github.com/f0235aa275d8b64a8b8f61cf7b328049
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, lib, fetchFromGitHub, cmake, extra-cmake-modules, pkgconfig, qmake
|
|
, libpthreadstubs, libxcb, libXdmcp, qtsvg, qttools, qtwebengine, qtx11extras, kwallet, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "falkon-${version}";
|
|
version = "3.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KDE";
|
|
repo = "falkon";
|
|
rev = "v${version}";
|
|
sha256 = "1ay1ljrdjcfqwjv4rhf4psh3dfihnvhpmpqcayd3p9lh57x7fh41";
|
|
};
|
|
|
|
preConfigure = ''
|
|
export NONBLOCK_JS_DIALOGS=true
|
|
export KDE_INTEGRATION=true
|
|
export GNOME_INTEGRATION=false
|
|
export FALKON_PREFIX=$out
|
|
'';
|
|
|
|
buildInputs = [
|
|
libpthreadstubs libxcb libXdmcp
|
|
kwallet
|
|
qtsvg qtwebengine qtx11extras
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig qmake qttools ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "QtWebEngine based cross-platform web browser";
|
|
homepage = https://community.kde.org/Incubator/Projects/Falkon;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|