Commit a4e50bb1 authored by Frederik Rietdijk's avatar Frederik Rietdijk
Browse files

Revert "qutebrowser: use qt515 (#97586)"

We are not going to add parameters to `python-packages.nix`.
The proper way to do this is override Python, and pass in a
custom `pkgs`.

This reverts commit c1a0dfad.
parent 8a715e25
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -22829,12 +22829,7 @@ in
  quodlibet-xine-full = quodlibet-full.override { xineBackend = true; tag = "-xine-full"; };
  qutebrowser = libsForQt515.callPackage ../applications/networking/browsers/qutebrowser {
    python3Packages = python3Packages.override {
      qt5 = qt515;
      libsForQt5 = libsForQt515;
    };
  };
  qutebrowser = libsForQt514.callPackage ../applications/networking/browsers/qutebrowser { };
  rabbitvcs = callPackage ../applications/version-management/rabbitvcs {};
+5 −2
Original line number Diff line number Diff line
@@ -9,13 +9,16 @@
{ pkgs
, stdenv
, python
, qt5
, libsForQt5
, overrides ? (self: super: {})
}:

with pkgs.lib;

let
  qt5 = pkgs.qt514;
  libsForQt5 = pkgs.libsForQt514;
in

let
  packages = ( self: