summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-08-25 09:35:49 +0200
committerMilan <me@pbb.lc>2020-08-25 12:02:15 +0200
commit7b527223fde76cdfb8adec63c8546d60b795a9fb (patch)
tree9fdfd65204fe88d150dce0e6d9036b3d84af29ca /pkgs
parentc0f61f3e17ec7b6fecd978e86ed96bd5c98a99c8 (diff)
downloadnixpkgs-7b527223fde76cdfb8adec63c8546d60b795a9fb.tar
nixpkgs-7b527223fde76cdfb8adec63c8546d60b795a9fb.tar.gz
nixpkgs-7b527223fde76cdfb8adec63c8546d60b795a9fb.tar.bz2
nixpkgs-7b527223fde76cdfb8adec63c8546d60b795a9fb.tar.lz
nixpkgs-7b527223fde76cdfb8adec63c8546d60b795a9fb.tar.xz
nixpkgs-7b527223fde76cdfb8adec63c8546d60b795a9fb.tar.zst
nixpkgs-7b527223fde76cdfb8adec63c8546d60b795a9fb.zip
qtdeclarative: revert "Patch for scrollbar regression"
This reverts commit 5530043208f0bef7. The change breaks the build of
qtquickcontrols. Fixes https://github.com/NixOS/nixpkgs/issues/96159.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/qt-5/modules/qtdeclarative.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/pkgs/development/libraries/qt-5/modules/qtdeclarative.nix b/pkgs/development/libraries/qt-5/modules/qtdeclarative.nix
index c22857a6dc6..b611282294c 100644
--- a/pkgs/development/libraries/qt-5/modules/qtdeclarative.nix
+++ b/pkgs/development/libraries/qt-5/modules/qtdeclarative.nix
@@ -1,4 +1,4 @@
-{ qtModule, lib, fetchpatch, python3, qtbase, qtsvg }:
+{ qtModule, lib, python3, qtbase, qtsvg }:
 
 with lib;
 
@@ -23,12 +23,4 @@ qtModule {
     "bin/qmlscene"
     "bin/qmltestrunner"
   ];
-  patches =
-    # https://mail.kde.org/pipermail/kde-distro-packagers/2020-June/000419.html
-    lib.optional (lib.versionAtLeast qtbase.version "5.14.2")
-      (fetchpatch {
-        url = "https://codereview.qt-project.org/gitweb?p=qt/qtdeclarative.git;a=patch;h=3e47ac319b0f53c43cc02a8356c2dec4f0daeef4";
-        sha256 = "0wvncg7047q73nm0svc6kb14sigwk7sc53r4778kn033aj0qqszj";
-        name = "qtdeclarative-QQuickItemView-fix-max-extent.patch";
-      });
 }