mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
libsForQt5.phonon-backend-gstreamer: backport fix for https://bugs.kde.org/show_bug.cgi?id=445196
This commit is contained in:
parent
2a04d4cb5e
commit
88223bcc01
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, lib, fetchurl, cmake, gst_all_1, phonon, pkg-config
|
{ stdenv, lib, fetchurl, fetchpatch, cmake, gst_all_1, phonon, pkg-config
|
||||||
, extra-cmake-modules, qttools, qtbase, qtx11extras
|
, extra-cmake-modules, qttools, qtbase, qtx11extras
|
||||||
, debug ? false
|
, debug ? false
|
||||||
}:
|
}:
|
||||||
@ -22,9 +22,17 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1wk1ip2w7fkh65zk6rilj314dna0hgsv2xhjmpr5w08xa8sii1y5";
|
sha256 = "1wk1ip2w7fkh65zk6rilj314dna0hgsv2xhjmpr5w08xa8sii1y5";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Hardcode paths to useful plugins so the backend doesn't depend
|
patches = [
|
||||||
# on system paths being set.
|
# Hardcode paths to useful plugins so the backend doesn't depend
|
||||||
patches = [ ./gst-plugin-paths.patch ];
|
# on system paths being set.
|
||||||
|
./gst-plugin-paths.patch
|
||||||
|
|
||||||
|
# Work around https://bugs.kde.org/show_bug.cgi?id=445196 until a new release.
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://invent.kde.org/libraries/phonon-gstreamer/-/commit/bbbb160f30a394655cff9398d17961142388b0f2.patch";
|
||||||
|
sha256 = "sha256-tNBqVt67LNb9SQogS9ol8/xYIZvVSoVUgXQahMfkFh8=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
dontWrapQtApps = true;
|
dontWrapQtApps = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user