mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
qtdeclarative: Patch for scrollbar regression
This commit is contained in:
parent
900b2d5a6c
commit
5530043208
@ -1,4 +1,4 @@
|
|||||||
{ qtModule, lib, python3, qtbase, qtsvg }:
|
{ qtModule, lib, fetchpatch, python3, qtbase, qtsvg }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
@ -23,4 +23,12 @@ qtModule {
|
|||||||
"bin/qmlscene"
|
"bin/qmlscene"
|
||||||
"bin/qmltestrunner"
|
"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";
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user