Merge pull request #265757 from dotlambda/qutebrowser-cleanup

qutebrowser: cleanup

authored by Artturi and committed by GitHub 8517efc4 ef139042

+3 -5
+3 -5
pkgs/applications/networking/browsers/qutebrowser/default.nix
··· 12 12 , widevine-cdm 13 13 , enableVulkan ? stdenv.isLinux 14 14 , vulkan-loader 15 - , buildPackages 16 15 }: 17 16 18 17 let ··· 56 55 # scripts and userscripts libs 57 56 tldextract beautifulsoup4 58 57 readability-lxml pykeepass 59 - ] ++ lib.optionals ((builtins.tryEval stem.outPath).success) [ 60 - # error: stem-1.8.2 not supported for interpreter python3.11 61 58 stem 62 - ] ++ [ 63 59 pynacl 64 60 # extensive ad blocking 65 61 adblock ··· 86 82 runHook preInstall 87 83 88 84 make -f misc/Makefile \ 89 - PYTHON=${buildPackages.python3}/bin/python3 \ 85 + PYTHON=${python3.pythonOnBuildForHost.interpreter} \ 90 86 PREFIX=. \ 91 87 DESTDIR="$out" \ 92 88 DATAROOTDIR=/share \ ··· 125 121 126 122 meta = with lib; { 127 123 homepage = "https://github.com/qutebrowser/qutebrowser"; 124 + changelog = "https://github.com/qutebrowser/qutebrowser/blob/v${version}/doc/changelog.asciidoc"; 128 125 description = "Keyboard-focused browser with a minimal GUI"; 129 126 license = licenses.gpl3Plus; 127 + mainProgram = "qutebrowser"; 130 128 platforms = if enableWideVine then [ "x86_64-linux" ] else qtwebengine.meta.platforms; 131 129 maintainers = with maintainers; [ jagajaga rnhmjoj ebzzry dotlambda nrdxp ]; 132 130 };