168 lines
4.2 KiB
Nix
168 lines
4.2 KiB
Nix
{
|
|
pkgs,
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
fetchzip,
|
|
python3,
|
|
glib-networking,
|
|
asciidoc,
|
|
docbook_xml_dtd_45,
|
|
docbook_xsl,
|
|
libxml2,
|
|
libxslt,
|
|
withPdfReader ? true,
|
|
pipewireSupport ? stdenv.hostPlatform.isLinux,
|
|
pipewire,
|
|
enableWideVine ? false,
|
|
widevine-cdm,
|
|
# can cause issues on some graphics chips
|
|
enableVulkan ? false,
|
|
vulkan-loader,
|
|
}:
|
|
|
|
let
|
|
# Load in Qt packages.
|
|
qtbase = pkgs.kdePackages.qtbase;
|
|
qtwebengine = pkgs.kdePackages.qtwebengine;
|
|
qtwayland = pkgs.kdePackages.qtwayland;
|
|
wrapQtAppsHook = pkgs.kdePackages.wrapQtAppsHook;
|
|
|
|
isQt6 = lib.versions.major qtbase.version == "6";
|
|
pdfjs =
|
|
let
|
|
version = "4.2.67";
|
|
in
|
|
fetchzip {
|
|
url = "https://github.com/mozilla/pdf.js/releases/download/v${version}/pdfjs-${version}-dist.zip";
|
|
hash = "sha256-7kfT3+ZwoGqZ5OwkO9h3DIuBFd0v8fRlcufxoBdcy8c=";
|
|
stripRoot = false;
|
|
};
|
|
|
|
version = "3.2.1";
|
|
in
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "qutebrowser" + lib.optionalString (!isQt6) "-qt5";
|
|
inherit version;
|
|
src = fetchurl {
|
|
url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/qutebrowser-${version}.tar.gz";
|
|
hash = "sha256-AqevKmxds42HsiWwuEEsgNmDgzXzLQ6KOPbX+804iX0=";
|
|
};
|
|
|
|
# Needs tox
|
|
doCheck = false;
|
|
|
|
buildInputs =
|
|
[
|
|
qtbase
|
|
glib-networking
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
qtwayland
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
asciidoc
|
|
docbook_xml_dtd_45
|
|
docbook_xsl
|
|
libxml2
|
|
libxslt
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
colorama
|
|
pyyaml
|
|
(if isQt6 then pyqt6-webengine else pyqtwebengine)
|
|
jinja2
|
|
pygments
|
|
# scripts and userscripts libs
|
|
tldextract
|
|
beautifulsoup4
|
|
readability-lxml
|
|
pykeepass
|
|
stem
|
|
pynacl
|
|
# extensive ad blocking
|
|
adblock
|
|
# for the qute-bitwarden user script to be able to copy the TOTP token to clipboard
|
|
pyperclip
|
|
];
|
|
|
|
patches = [
|
|
./fix-restart.patch
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
postPatch =
|
|
''
|
|
substituteInPlace qutebrowser/misc/quitter.py --subst-var-by qutebrowser "$out/bin/qutebrowser"
|
|
|
|
sed -i "s,/usr,$out,g" qutebrowser/utils/standarddir.py
|
|
''
|
|
+ lib.optionalString withPdfReader ''
|
|
sed -i "s,/usr/share/pdf.js,${pdfjs},g" qutebrowser/browser/pdfjs.py
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
make -f misc/Makefile \
|
|
PYTHON=${(python3.pythonOnBuildForHost.withPackages (ps: with ps; [ setuptools ])).interpreter} \
|
|
PREFIX=. \
|
|
DESTDIR="$out" \
|
|
DATAROOTDIR=/share \
|
|
install
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = ''
|
|
# Patch python scripts
|
|
buildPythonPath "$out $propagatedBuildInputs"
|
|
scripts=$(grep -rl python "$out"/share/qutebrowser/{user,}scripts/)
|
|
for i in $scripts; do
|
|
patchPythonScript "$i"
|
|
done
|
|
'';
|
|
|
|
preFixup =
|
|
let
|
|
libPath = lib.makeLibraryPath [ pipewire ];
|
|
in
|
|
''
|
|
makeWrapperArgs+=(
|
|
# Force the app to use QT_PLUGIN_PATH values from wrapper
|
|
--unset QT_PLUGIN_PATH
|
|
"''${qtWrapperArgs[@]}"
|
|
# avoid persistant warning on starup
|
|
--set QT_STYLE_OVERRIDE Fusion
|
|
${lib.optionalString pipewireSupport ''--prefix LD_LIBRARY_PATH : ${libPath}''}
|
|
${lib.optionalString (enableVulkan) ''
|
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]}
|
|
--set-default QSG_RHI_BACKEND vulkan
|
|
''}
|
|
${lib.optionalString enableWideVine ''--add-flags "--qt-flag widevine-path=${widevine-cdm}/share/google/chrome/WidevineCdm/_platform_specific/linux_x64/libwidevinecdm.so"''}
|
|
--set QTWEBENGINE_RESOURCES_PATH "${qtwebengine}/resources"
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/qutebrowser/qutebrowser";
|
|
changelog = "https://github.com/qutebrowser/qutebrowser/blob/v${version}/doc/changelog.asciidoc";
|
|
description = "Keyboard-focused browser with a minimal GUI";
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "qutebrowser";
|
|
platforms = if enableWideVine then [ "x86_64-linux" ] else qtwebengine.meta.platforms;
|
|
maintainers = with maintainers; [
|
|
jagajaga
|
|
rnhmjoj
|
|
ebzzry
|
|
dotlambda
|
|
nrdxp
|
|
];
|
|
};
|
|
}
|