2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, libGL, glib, gdk-pixbuf, xorg, libintl
|
2021-05-07 14:18:14 -07:00
|
|
|
, pangoSupport ? true, pango, cairo, gobject-introspection, wayland, gnome
|
2019-11-07 08:41:26 -08:00
|
|
|
, mesa, automake, autoconf
|
2014-02-19 14:20:33 -08:00
|
|
|
, gstreamerSupport ? true, gst_all_1 }:
|
2011-11-07 08:48:05 -08:00
|
|
|
|
2013-12-05 13:50:41 -08:00
|
|
|
let
|
2018-03-02 22:13:28 -08:00
|
|
|
pname = "cogl";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
2020-08-19 10:34:04 -07:00
|
|
|
version = "1.22.8";
|
2011-11-07 08:48:05 -08:00
|
|
|
|
2012-01-06 10:13:43 -08:00
|
|
|
src = fetchurl {
|
2021-01-21 09:00:13 -08:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${name}.tar.xz";
|
2020-08-19 10:34:04 -07:00
|
|
|
sha256 = "0nfph4ai60ncdx7hy6hl1i1cmp761jgnyjfhagzi0iqq36qb41d8";
|
2011-11-07 08:48:05 -08:00
|
|
|
};
|
|
|
|
|
2018-09-07 06:05:17 -07: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-03-31 18:11:51 -07:00
|
|
|
url = "https://bug787443.bugzilla-attachments.gnome.org/attachment.cgi?id=359589";
|
2018-09-07 06:05:17 -07:00
|
|
|
sha256 = "0f0d9iddg8zwy853phh7swikg4yzhxxv71fcag36f8gis0j5p998";
|
|
|
|
})
|
|
|
|
|
|
|
|
(fetchpatch {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "https://bug787443.bugzilla-attachments.gnome.org/attachment.cgi?id=361056";
|
2018-09-07 06:05:17 -07:00
|
|
|
sha256 = "09fyrdci4727fg6qm5aaapsbv71sf4wgfaqz8jqlyy61dibgg490";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-10-08 08:28:45 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config libintl automake autoconf ];
|
2011-11-07 08:48:05 -08:00
|
|
|
|
2013-12-23 10:25:29 -08:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-introspection"
|
|
|
|
"--enable-kms-egl-platform"
|
2016-09-18 12:29:15 -07:00
|
|
|
"--enable-wayland-egl-platform"
|
|
|
|
"--enable-wayland-egl-server"
|
2021-01-21 09:00:13 -08:00
|
|
|
] ++ lib.optional gstreamerSupport "--enable-cogl-gst"
|
|
|
|
++ lib.optionals (!stdenv.isDarwin) [ "--enable-gles1" "--enable-gles2" ];
|
2013-12-23 10:25:29 -08:00
|
|
|
|
|
|
|
propagatedBuildInputs = with xorg; [
|
2019-05-22 04:03:39 -07:00
|
|
|
glib gdk-pixbuf gobject-introspection wayland mesa
|
2018-02-24 04:06:44 -08:00
|
|
|
libGL libXrandr libXfixes libXcomposite libXdamage
|
2013-12-23 10:25:29 -08:00
|
|
|
]
|
2021-01-21 09:00:13 -08:00
|
|
|
++ lib.optionals gstreamerSupport [ gst_all_1.gstreamer
|
2014-02-19 14:20:33 -08:00
|
|
|
gst_all_1.gst-plugins-base ];
|
2011-11-07 08:48:05 -08:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
buildInputs = lib.optionals pangoSupport [ pango cairo ];
|
2011-11-07 08:48:05 -08:00
|
|
|
|
2013-09-06 06:54:46 -07:00
|
|
|
COGL_PANGO_DEP_CFLAGS
|
2021-01-21 09:00:13 -08:00
|
|
|
= lib.optionalString (stdenv.isDarwin && pangoSupport)
|
2015-10-06 11:31:39 -07:00
|
|
|
"-I${pango.dev}/include/pango-1.0 -I${cairo.dev}/include/cairo";
|
2013-09-06 06:54:46 -07:00
|
|
|
|
2013-12-05 13:50:41 -08:00
|
|
|
#doCheck = true; # all tests fail (no idea why)
|
|
|
|
|
2018-03-02 22:13:28 -08:00
|
|
|
passthru = {
|
2021-05-07 14:18:14 -07:00
|
|
|
updateScript = gnome.updateScript {
|
2018-03-02 22:13:28 -08:00
|
|
|
packageName = pname;
|
2021-03-20 16:57:24 -07:00
|
|
|
versionPolicy = "odd-unstable";
|
2018-03-02 22:13:28 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2011-11-07 08:48:05 -08:00
|
|
|
description = "A small open source library for using 3D graphics hardware for rendering";
|
2013-09-06 06:54:46 -07: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 02:26:18 -07:00
|
|
|
platforms = platforms.mesaPlatforms;
|
|
|
|
license = with licenses; [ mit bsd3 publicDomain sgi-b-20 ];
|
2011-11-07 08:48:05 -08:00
|
|
|
};
|
|
|
|
}
|