2021-01-21 17:00:13 +00:00
|
|
|
{ fetchurl, lib, stdenv, pkg-config, 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 {
|
2021-01-21 17:00:13 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${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 ];
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2014-02-19 22:21:19 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl2Plus;
|
2014-02-19 22:21:19 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
maintainers = with lib.maintainers; [ lethalman ];
|
|
|
|
platforms = lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
2014-02-19 22:21:19 +00:00
|
|
|
};
|
|
|
|
}
|