ki18n: Adds patch that fixes infinite loop in po files generation

This commit is contained in:
Bastian Köcher 2018-04-18 18:55:58 +02:00
parent 52858e4297
commit 39ba6636eb

View file

@ -1,5 +1,5 @@
{
mkDerivation, lib,
mkDerivation, lib, fetchpatch,
extra-cmake-modules, gettext, python,
qtbase, qtdeclarative, qtscript,
}:
@ -13,4 +13,10 @@ mkDerivation {
nativeBuildInputs = [ extra-cmake-modules ];
propagatedNativeBuildInputs = [ gettext python ];
buildInputs = [ qtdeclarative qtscript ];
patches = [
(fetchpatch {
url = "https://phabricator.kde.org/D12216?download=true";
sha256 = "04gpyb11vlgivqjx3lqdwgqb4ss5bphy5zmh65k57bbv4rnlsm15";
})
];
}