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

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 { src = fetchgit {
url = "https://github.com/The-Compiler/qutebrowser/releases/download/v${version}/qutebrowser-${version}.tar.gz"; url = "https://github.com/The-Compiler/qutebrowser.git";
sha256 = "b741a1a0336b8d36133603a3318d1c4c63c9abf50212919200cd2ae665b07111"; rev = "f31f254d9bf3ffd4ef95089f4924e5c45d8c0f78";
}; sha256 = "0virh71q9qyh7ggk5p6h3gjv30gr2jn8am6yq8xzbslchck0rkcr";
# Needs tox };
doCheck = false;
propagatedBuildInputs = [ # Needs tox
python pyyaml pyqt5 jinja2 pygments pypeg2 doCheck = false;
];
meta = { propagatedBuildInputs = [
homepage = https://github.com/The-Compiler/qutebrowser; python pyyaml pyqt5 jinja2 pygments pypeg2
description = "Keyboard-focused browser with a minimal GUI"; ];
license = stdenv.lib.licenses.gpl3Plus;
meta = {
homepage = https://github.com/The-Compiler/qutebrowser;
description = "Keyboard-focused browser with a minimal GUI";
license = stdenv.lib.licenses.gpl3Plus;
}; };
} }