clutter-gst: enable strictDeps

fix cross

cogl propagates gobject-introspection to buildInputs so thats why it has been working
so far

checked with diffing
This commit is contained in:
Artturin 2023-03-26 00:04:04 +02:00
parent c0eaef7382
commit 4e223a3b68

View file

@ -1,4 +1,4 @@
{ fetchurl, fetchpatch, lib, stdenv, pkg-config, clutter, gtk3, glib, cogl, gnome, gdk-pixbuf }:
{ fetchurl, fetchpatch, lib, stdenv, pkg-config, clutter, gtk3, glib, cogl, gnome, gdk-pixbuf, gobject-introspection }:
stdenv.mkDerivation rec {
pname = "clutter-gst";
@ -21,8 +21,9 @@ stdenv.mkDerivation rec {
})
];
strictDeps = true;
nativeBuildInputs = [ pkg-config glib gobject-introspection ];
propagatedBuildInputs = [ clutter gtk3 glib cogl gdk-pixbuf ];
nativeBuildInputs = [ pkg-config ];
postBuild = "rm -rf $out/share/gtk-doc";