2019-05-22 12:03:39 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, clutter, gtk3, glib, cogl, gnome3, gdk-pixbuf }:
|
2014-02-19 22:21:19 +00:00
|
|
|
|
2020-01-16 15:10:26 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 01:36:59 +00:00
|
|
|
pname = "clutter-gst";
|
2019-02-22 01:04:21 +00:00
|
|
|
version = "3.0.27";
|
2020-01-16 15:10:26 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
2014-02-19 22:21:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-16 15:10:26 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-02-22 01:04:21 +00:00
|
|
|
sha256 = "17czmpl92dzi4h3rn5rishk015yi3jwiw29zv8qan94xcmnbssgy";
|
2014-02-19 22:21:19 +00:00
|
|
|
};
|
|
|
|
|
2019-05-22 12:03:39 +01:00
|
|
|
propagatedBuildInputs = [ clutter gtk3 glib cogl gdk-pixbuf ];
|
2014-02-19 22:21:19 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
postBuild = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
2018-03-03 01:36:59 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-02-19 22:21:19 +00:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "GStreamer bindings for clutter";
|
2014-02-19 22:21:19 +00:00
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.clutter-project.org/";
|
2014-02-19 22:21:19 +00:00
|
|
|
|
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 ];
|
2018-04-30 23:47:47 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
2014-02-19 22:21:19 +00:00
|
|
|
};
|
|
|
|
}
|