Merge pull request #118263 from dotlambda/qutebrowser-2.1.1

qutebrowser: 2.1.0 -> 2.1.1
This commit is contained in:
Sandro 2021-04-01 23:48:45 +02:00 committed by GitHub
commit 6cd00e17c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,12 +31,12 @@ let
in mkDerivationWith python3Packages.buildPythonApplication rec { in mkDerivationWith python3Packages.buildPythonApplication rec {
pname = "qutebrowser"; pname = "qutebrowser";
version = "2.1.0"; version = "2.1.1";
# the release tarballs are different from the git checkout! # the release tarballs are different from the git checkout!
src = fetchurl { src = fetchurl {
url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${pname}-${version}.tar.gz"; url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${pname}-${version}.tar.gz";
sha256 = "0fz6rbacy9sbzx0jsvwkrcyv2849ia8pj1w716l6pw9i9wx3gp8x"; sha256 = "sha256-txsArX1JiRGXjlu9FTpt0EUKxq3j5b85j8luFTKDQs4=";
}; };
# Needs tox # Needs tox
@ -110,17 +110,18 @@ in mkDerivationWith python3Packages.buildPythonApplication rec {
done done
''; '';
postFixup = '' preFixup = ''
wrapProgram $out/bin/qutebrowser \ makeWrapperArgs+=(
"''${gappsWrapperArgs[@]}" \ "''${gappsWrapperArgs[@]}"
"''${qtWrapperArgs[@]}" \ "''${qtWrapperArgs[@]}"
--add-flags '--backend ${backend}' --add-flags '--backend ${backend}'
)
''; '';
meta = with lib; { meta = with lib; {
homepage = "https://github.com/The-Compiler/qutebrowser"; homepage = "https://github.com/The-Compiler/qutebrowser";
description = "Keyboard-focused browser with a minimal GUI"; description = "Keyboard-focused browser with a minimal GUI";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ jagajaga rnhmjoj ebzzry ]; maintainers = with maintainers; [ jagajaga rnhmjoj ebzzry dotlambda ];
}; };
} }