Skip to content

Commit

Permalink
kdeFrameworks.kio: patch for insecure URL passing
Browse files Browse the repository at this point in the history
(cherry picked from commit 5ce0626)
  • Loading branch information
grahamc committed Mar 2, 2017
1 parent 0bbcbd2 commit 9daae5b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions pkgs/development/libraries/kde-frameworks/kio/default.nix
Expand Up @@ -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 {
Expand All @@ -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";
})
];
}

0 comments on commit 9daae5b

Please sign in to comment.