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,15 +1,17 @@
{ 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 {
name = "qutebrowser-${version}";
namePrefix = "";
src = fetchurl {
url = "https://github.com/The-Compiler/qutebrowser/releases/download/v${version}/qutebrowser-${version}.tar.gz";
sha256 = "b741a1a0336b8d36133603a3318d1c4c63c9abf50212919200cd2ae665b07111";
src = fetchgit {
url = "https://github.com/The-Compiler/qutebrowser.git";
rev = "f31f254d9bf3ffd4ef95089f4924e5c45d8c0f78";
sha256 = "0virh71q9qyh7ggk5p6h3gjv30gr2jn8am6yq8xzbslchck0rkcr";
};
# Needs tox
doCheck = false;