mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
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:
parent
c0eaef7382
commit
4e223a3b68
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user