qutebrowser: update to git master

qutebrowser is actively developed, sticking to stable
versions doesn’t make any sense.
Also fixed formatting.
This commit is contained in:
Kirill Elagin 2015-06-28 02:22:48 +03:00
parent 511fc648b5
commit e2398a2361
1 changed files with 19 additions and 17 deletions

View File

@ -1,25 +1,27 @@
{ stdenv, fetchurl, python, buildPythonPackage, qt5, pyqt5, jinja2, pygments, pyyaml, pypeg2}: { stdenv, fetchgit, python, buildPythonPackage, qt5, pyqt5, jinja2, pygments, pyyaml, pypeg2 }:
let version = "0.2.1"; in let version = "0.3-pre"; in
buildPythonPackage { buildPythonPackage {
name = "qutebrowser-${version}"; name = "qutebrowser-${version}";
namePrefix = ""; namePrefix = "";
src = fetchurl {
url = "https://github.com/The-Compiler/qutebrowser/releases/download/v${version}/qutebrowser-${version}.tar.gz";
sha256 = "b741a1a0336b8d36133603a3318d1c4c63c9abf50212919200cd2ae665b07111";
};
# Needs tox
doCheck = false;
propagatedBuildInputs = [ src = fetchgit {
python pyyaml pyqt5 jinja2 pygments pypeg2 url = "https://github.com/The-Compiler/qutebrowser.git";
]; rev = "f31f254d9bf3ffd4ef95089f4924e5c45d8c0f78";
sha256 = "0virh71q9qyh7ggk5p6h3gjv30gr2jn8am6yq8xzbslchck0rkcr";
meta = { };
homepage = https://github.com/The-Compiler/qutebrowser;
description = "Keyboard-focused browser with a minimal GUI"; # Needs tox
license = stdenv.lib.licenses.gpl3Plus; doCheck = false;
propagatedBuildInputs = [
python pyyaml pyqt5 jinja2 pygments pypeg2
];
meta = {
homepage = https://github.com/The-Compiler/qutebrowser;
description = "Keyboard-focused browser with a minimal GUI";
license = stdenv.lib.licenses.gpl3Plus;
}; };
} }