mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
qutebrowser: init at 0.2.1
This commit is contained in:
parent
d9085b845e
commit
006e7ae04e
2 changed files with 29 additions and 0 deletions
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchurl, python, buildPythonPackage, qt5, pyqt5, jinja2, pygments, pyyaml, pypeg2}:
|
||||
|
||||
let version = "0.2.1"; 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";
|
||||
};
|
||||
# Needs tox
|
||||
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.gpl3;
|
||||
};
|
||||
}
|
|
@ -12299,6 +12299,10 @@ let
|
|||
gst_plugins_bad = null;
|
||||
};
|
||||
|
||||
qutebrowser = callPackage ../applications/networking/browsers/qutebrowser {
|
||||
inherit (python34Packages) buildPythonPackage python pyqt5 jinja2 pygments pyyaml pypeg2;
|
||||
};
|
||||
|
||||
rakarrack = callPackage ../applications/audio/rakarrack {
|
||||
inherit (xorg) libXpm libXft;
|
||||
fltk = fltk13;
|
||||
|
|
Loading…
Reference in a new issue