parent
c88f3adb17
commit
2daf5702c6
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib, fetchurl, fetchzip, python3Packages
|
||||
{ stdenv, lib, fetchurl, fetchzip, python3
|
||||
, mkDerivationWith, wrapQtAppsHook, wrapGAppsHook, qtbase, glib-networking
|
||||
, asciidoc, docbook_xml_dtd_45, docbook_xsl, libxml2
|
||||
, libxslt, gst_all_1 ? null
|
||||
|
@ -10,6 +10,7 @@
|
|||
assert withMediaPlayback -> gst_all_1 != null;
|
||||
|
||||
let
|
||||
python3Packages = python3.pkgs;
|
||||
pdfjs = let
|
||||
version = "2.4.456";
|
||||
in
|
||||
|
|
|
@ -22835,7 +22835,20 @@ in
|
|||
|
||||
quodlibet-xine-full = quodlibet-full.override { xineBackend = true; tag = "-xine-full"; };
|
||||
|
||||
qutebrowser = libsForQt514.callPackage ../applications/networking/browsers/qutebrowser { };
|
||||
qutebrowser = let
|
||||
libsForQt5 = qt515;
|
||||
qt5 = qt515;
|
||||
python = python3.override {
|
||||
packageOverrides = self: super: {
|
||||
pkgs = pkgs // {
|
||||
inherit libsForQt5 qt5;
|
||||
};
|
||||
};
|
||||
self = python3;
|
||||
};
|
||||
in libsForQt5.callPackage ../applications/networking/browsers/qutebrowser {
|
||||
python3 = python;
|
||||
};
|
||||
|
||||
rabbitvcs = callPackage ../applications/version-management/rabbitvcs {};
|
||||
|
||||
|
|
Loading…
Reference in New Issue