kdeFrameworks.kio: patch for insecure URL passing

This commit is contained in:
Graham Christensen 2017-03-02 08:25:35 -05:00
parent 45a86b0816
commit 5ce06263a3
No known key found for this signature in database
GPG key ID: 06121D366FE9435C

View file

@ -4,7 +4,7 @@
, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews
, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet
, kwidgetsaddons, kwindowsystem, kxmlgui
, qtscript, qtx11extras, solid
, qtscript, qtx11extras, solid, fetchpatch
}:
kdeFramework {
@ -17,5 +17,12 @@ kdeFramework {
ktextwidgets kwallet kwidgetsaddons kwindowsystem kxmlgui solid qtscript
qtx11extras
];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
patches = (copyPathsToStore (lib.readPathsFromFile ./. ./series))
++ [
(fetchpatch {
name = "SanitizeURLsBeforePassingThemToFindProxyForURL.patch";
url = "https://cgit.kde.org/kio.git/patch/?id=f9d0cb47cf94e209f6171ac0e8d774e68156a6e4";
sha256 = "1s6rcp8rrlhc6rgy3b303y0qq0s8371n12r5lk9zbkw14wjvbix0";
})
];
}