From 4e223a3b68092f2917578e3aba703aee1cecac04 Mon Sep 17 00:00:00 2001 From: Artturin Date: Sun, 26 Mar 2023 00:04:04 +0200 Subject: [PATCH] clutter-gst: enable strictDeps fix cross cogl propagates gobject-introspection to buildInputs so thats why it has been working so far checked with diffing --- pkgs/development/libraries/clutter-gst/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/clutter-gst/default.nix b/pkgs/development/libraries/clutter-gst/default.nix index e00cda47da6..4d21cd10f8e 100644 --- a/pkgs/development/libraries/clutter-gst/default.nix +++ b/pkgs/development/libraries/clutter-gst/default.nix @@ -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";