2014-02-19 22:21:19 +00:00
|
|
|
{ fetchurl, stdenv, pkgconfig, clutter, gtk3, glib, cogl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-25 14:32:52 +01:00
|
|
|
major = "3.0";
|
2017-06-25 17:59:23 +01:00
|
|
|
minor = "24";
|
2016-09-25 14:32:52 +01:00
|
|
|
name = "clutter-gst-${major}.${minor}";
|
2014-02-19 22:21:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-25 14:32:52 +01:00
|
|
|
url = "mirror://gnome/sources/clutter-gst/${major}/${name}.tar.xz";
|
2017-06-25 17:59:23 +01:00
|
|
|
sha256 = "0v6cg0syh4vx7y7ni47jsvr2r57q0j3h1f1gjlp0ciscixywiwg9";
|
2014-02-19 22:21:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ clutter gtk3 glib cogl ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
postBuild = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "GStreamer bindings for clutter";
|
2014-02-19 22:21:19 +00:00
|
|
|
|
|
|
|
homepage = http://www.clutter-project.org/;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2014-02-19 22:21:19 +00:00
|
|
|
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ lethalman ];
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
|
|
|
};
|
|
|
|
}
|