qutebrowser: 2.1.0 -> 2.1.1

This commit is contained in:
Robert Schütz 2021-04-01 18:28:18 +02:00
parent 8324a3df39
commit d98452864f
1 changed files with 8 additions and 7 deletions

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 ];
}; };
} }