mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
clutter: Add gtk3 to buildInputs (#24815)
This is similar to the same change made in PR #12996. Fixes #21509 (makes `gnome3.sushi` work again).
This commit is contained in:
parent
96b83f66a2
commit
878b3500ee
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl, glib, pkgconfig, mesa, libX11, libXext, libXfixes
|
||||
, libXdamage, libXcomposite, libXi, cogl, pango, atk, json_glib,
|
||||
gobjectIntrospection
|
||||
gobjectIntrospection, gtk3
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "01nfjd4k7j2n3agpx2d9ncff86nfsqv4n23465rb9zmk4iw4wlb7";
|
||||
};
|
||||
|
||||
buildInputs = [ gtk3 ];
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
propagatedBuildInputs =
|
||||
[ libX11 mesa libXext libXfixes libXdamage libXcomposite libXi cogl pango
|
||||
|
|
Loading…
Reference in a new issue