about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/clutter-gst/default.nix
blob: 4d21cd10f8ef13bc97f6c19912650f85ba397400 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ fetchurl, fetchpatch, lib, stdenv, pkg-config, clutter, gtk3, glib, cogl, gnome, gdk-pixbuf, gobject-introspection }:

stdenv.mkDerivation rec {
  pname = "clutter-gst";
  version = "3.0.27";

  outputs = [ "out" "dev" ];

  src = fetchurl {
    url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
    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=";
    })
  ];

  strictDeps = true;
  nativeBuildInputs = [ pkg-config glib gobject-introspection ];
  propagatedBuildInputs = [ clutter gtk3 glib cogl gdk-pixbuf ];

  postBuild = "rm -rf $out/share/gtk-doc";

  passthru = {
    updateScript = gnome.updateScript {
      packageName = pname;
      versionPolicy = "odd-unstable";
    };
  };

  meta = {
    description = "GStreamer bindings for clutter";

    homepage = "http://www.clutter-project.org/";

    license = lib.licenses.lgpl2Plus;

    maintainers = with lib.maintainers; [ ];
    platforms = lib.platforms.unix;
  };
}