clutter-gst: Add patch from Arch Linux to fix corrupted display with Cheese
The upstream project is archived.
This commit is contained in:
parent
04f574a1c0
commit
ecbfab1328
1 changed files with 11 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ fetchurl, lib, stdenv, pkg-config, clutter, gtk3, glib, cogl, gnome, gdk-pixbuf }:
|
||||
{ fetchurl, fetchpatch, lib, stdenv, pkg-config, clutter, gtk3, glib, cogl, gnome, gdk-pixbuf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "clutter-gst";
|
||||
|
@ -11,6 +11,16 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "17czmpl92dzi4h3rn5rishk015yi3jwiw29zv8qan94xcmnbssgy";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Add patch from Arch Linux to fix corrupted display with Cheese
|
||||
# https://gitlab.gnome.org/GNOME/cheese/-/issues/51
|
||||
# https://github.com/archlinux/svntogit-packages/tree/packages/clutter-gst/trunk
|
||||
(fetchpatch {
|
||||
url = "https://github.com/archlinux/svntogit-packages/raw/c4dd0bbda35aa603ee790676f6e15541f71b6d36/trunk/0001-video-sink-Remove-RGBx-BGRx-support.patch";
|
||||
sha256 = "sha256-k1fCiM/u7q81UrDYgbqhN/C+q9DVQ+qOyq6vmA3hbSQ=";
|
||||
})
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ clutter gtk3 glib cogl gdk-pixbuf ];
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue