2018-03-03 04:42:45 +03:00
|
|
|
{ fetchurl, stdenv, pkgconfig, gobjectIntrospection, clutter, gtk3, gnome3 }:
|
|
|
|
let
|
|
|
|
pname = "clutter-gtk";
|
|
|
|
version = "1.8.4";
|
|
|
|
in
|
2010-07-19 02:45:03 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 04:42:45 +03:00
|
|
|
name = "${pname}-${version}";
|
2010-07-19 02:45:03 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-03 04:42:45 +03:00
|
|
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
2017-10-03 04:12:51 +03:00
|
|
|
sha256 = "01ibniy4ich0fgpam53q252idm7f4fn5xg5qvizcfww90gn9652j";
|
2010-07-19 02:45:03 +04:00
|
|
|
};
|
|
|
|
|
2012-03-17 17:30:46 +04:00
|
|
|
propagatedBuildInputs = [ clutter gtk3 ];
|
2014-03-22 16:55:58 +04:00
|
|
|
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
|
2013-08-06 11:10:00 +04:00
|
|
|
|
2011-02-12 16:52:17 +03:00
|
|
|
postBuild = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
2018-03-03 04:42:45 +03:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2010-07-19 02:45:03 +04:00
|
|
|
meta = {
|
|
|
|
description = "Clutter-GTK";
|
|
|
|
homepage = http://www.clutter-project.org/;
|
2014-06-19 08:19:00 +04:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2017-03-27 20:11:17 +03:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ lethalman ];
|
2018-05-01 01:47:47 +03:00
|
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
2010-07-19 02:45:03 +04:00
|
|
|
};
|
|
|
|
}
|