summary refs log tree commit diff
path: root/pkgs/development/libraries/clutter-gst/default.nix
blob: 8297dc9d5da385bfe8eb338c4e687b72821bacf5 (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
{ fetchurl, stdenv, pkgconfig, clutter, gtk3, glib, cogl }:

stdenv.mkDerivation rec {
  name = "clutter-gst-2.0.10";

  src = fetchurl {
    url = "mirror://gnome/sources/clutter-gst/2.0/${name}.tar.xz";
    sha256 = "f00cf492a6d4f1036c70d8a0ebd2f0f47586ea9a9b49b1ffda79c9dc7eadca00";
  };

  propagatedBuildInputs = [ clutter gtk3 glib cogl ];
  nativeBuildInputs = [ pkgconfig ];

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

  meta = {
    description = "Clutter-GST";

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

    license = "LGPLv2+";

    maintainers = with stdenv.lib.maintainers; [ lethalman ];
    platforms = stdenv.lib.platforms.gnu;  # arbitrary choice
  };
}