2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, libGL, glib, gdk-pixbuf, xorg, libintl
|
2021-05-07 22:18:14 +01:00
|
|
|
, pangoSupport ? true, pango, cairo, gobject-introspection, wayland, gnome
|
2019-11-07 16:41:26 +00:00
|
|
|
, mesa, automake, autoconf
|
2014-02-19 22:20:33 +00:00
|
|
|
, gstreamerSupport ? true, gst_all_1 }:
|
2011-11-07 16:48:05 +00:00
|
|
|
|
2021-11-17 12:05:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 06:13:28 +00:00
|
|
|
pname = "cogl";
|
2020-08-19 18:34:04 +01:00
|
|
|
version = "1.22.8";
|
2011-11-07 16:48:05 +00:00
|
|
|
|
2012-01-06 18:13:43 +00:00
|
|
|
src = fetchurl {
|
2021-11-17 12:05:59 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/cogl-${version}.tar.xz";
|
2020-08-19 18:34:04 +01:00
|
|
|
sha256 = "0nfph4ai60ncdx7hy6hl1i1cmp761jgnyjfhagzi0iqq36qb41d8";
|
2011-11-07 16:48:05 +00:00
|
|
|
};
|
|
|
|
|
2018-09-07 14:05:17 +01:00
|
|
|
patches = [
|
|
|
|
# Some deepin packages need the following patches. They have been
|
|
|
|
# submitted by Fedora on the GNOME Bugzilla
|
|
|
|
# (https://bugzilla.gnome.org/787443). Upstream thinks the patch
|
|
|
|
# could be merged, but dev can not make a new release.
|
|
|
|
|
|
|
|
(fetchpatch {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://bug787443.bugzilla-attachments.gnome.org/attachment.cgi?id=359589";
|
2018-09-07 14:05:17 +01:00
|
|
|
sha256 = "0f0d9iddg8zwy853phh7swikg4yzhxxv71fcag36f8gis0j5p998";
|
|
|
|
})
|
|
|
|
|
|
|
|
(fetchpatch {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://bug787443.bugzilla-attachments.gnome.org/attachment.cgi?id=361056";
|
2018-09-07 14:05:17 +01:00
|
|
|
sha256 = "09fyrdci4727fg6qm5aaapsbv71sf4wgfaqz8jqlyy61dibgg490";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-10-08 16:28:45 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config libintl automake autoconf ];
|
2011-11-07 16:48:05 +00:00
|
|
|
|
2013-12-23 18:25:29 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-introspection"
|
|
|
|
"--enable-kms-egl-platform"
|
2016-09-18 20:29:15 +01:00
|
|
|
"--enable-wayland-egl-platform"
|
|
|
|
"--enable-wayland-egl-server"
|
2021-01-21 17:00:13 +00:00
|
|
|
] ++ lib.optional gstreamerSupport "--enable-cogl-gst"
|
|
|
|
++ lib.optionals (!stdenv.isDarwin) [ "--enable-gles1" "--enable-gles2" ];
|
2013-12-23 18:25:29 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = with xorg; [
|
2019-05-22 12:03:39 +01:00
|
|
|
glib gdk-pixbuf gobject-introspection wayland mesa
|
2018-02-24 12:06:44 +00:00
|
|
|
libGL libXrandr libXfixes libXcomposite libXdamage
|
2013-12-23 18:25:29 +00:00
|
|
|
]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optionals gstreamerSupport [ gst_all_1.gstreamer
|
2014-02-19 22:20:33 +00:00
|
|
|
gst_all_1.gst-plugins-base ];
|
2011-11-07 16:48:05 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
buildInputs = lib.optionals pangoSupport [ pango cairo ];
|
2011-11-07 16:48:05 +00:00
|
|
|
|
2013-09-06 14:54:46 +01:00
|
|
|
COGL_PANGO_DEP_CFLAGS
|
2021-01-21 17:00:13 +00:00
|
|
|
= lib.optionalString (stdenv.isDarwin && pangoSupport)
|
2015-10-06 19:31:39 +01:00
|
|
|
"-I${pango.dev}/include/pango-1.0 -I${cairo.dev}/include/cairo";
|
2013-09-06 14:54:46 +01:00
|
|
|
|
2013-12-05 21:50:41 +00:00
|
|
|
#doCheck = true; # all tests fail (no idea why)
|
|
|
|
|
2018-03-03 06:13:28 +00:00
|
|
|
passthru = {
|
2021-05-07 22:18:14 +01:00
|
|
|
updateScript = gnome.updateScript {
|
2018-03-03 06:13:28 +00:00
|
|
|
packageName = pname;
|
2021-03-20 23:57:24 +00:00
|
|
|
versionPolicy = "odd-unstable";
|
2018-03-03 06:13:28 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2011-11-07 16:48:05 +00:00
|
|
|
description = "A small open source library for using 3D graphics hardware for rendering";
|
2013-09-06 14:54:46 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Cogl is a small open source library for using 3D graphics hardware for
|
|
|
|
rendering. The API departs from the flat state machine style of OpenGL
|
|
|
|
and is designed to make it easy to write orthogonal components that can
|
|
|
|
render without stepping on each other's toes.
|
|
|
|
'';
|
|
|
|
|
2018-09-30 10:26:18 +01:00
|
|
|
platforms = platforms.mesaPlatforms;
|
|
|
|
license = with licenses; [ mit bsd3 publicDomain sgi-b-20 ];
|
2011-11-07 16:48:05 +00:00
|
|
|
};
|
|
|
|
}
|