GNOME: 3.22 -> 3.24

This is a squash commit of the joint work from:

* Jan Tojnar (@jtojnar)
* Linus Heckemann (@lheckemann)
* Ryan Mulligan (@ryantm)
* romildo (@romildo)
* Tom Hunger (@teh)
This commit is contained in:
Linus Heckemann
2017-06-25 17:59:23 +01:00
committed by Tom Hunger
parent 9eafe6706d
commit b73e3b6095
359 changed files with 913 additions and 922 deletions

View File

@@ -1,25 +1,25 @@
{ stdenv, fetchurl, glib, pkgconfig, mesa, libX11, libXext, libXfixes
, libXdamage, libXcomposite, libXi, cogl, pango, atk, json_glib,
, libXdamage, libXcomposite, libXi, libxcb, cogl, pango, atk, json_glib,
gobjectIntrospection, gtk3
}:
let
ver_maj = "1.26";
ver_min = "0";
ver_min = "2";
in
stdenv.mkDerivation rec {
name = "clutter-${ver_maj}.${ver_min}";
src = fetchurl {
url = "mirror://gnome/sources/clutter/${ver_maj}/${name}.tar.xz";
sha256 = "01nfjd4k7j2n3agpx2d9ncff86nfsqv4n23465rb9zmk4iw4wlb7";
sha256 = "0mif1qnrpkgxi43h7pimim6w6zwywa16ixcliw0yjm9hk0a368z7";
};
buildInputs = [ gtk3 ];
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs =
[ libX11 mesa libXext libXfixes libXdamage libXcomposite libXi cogl pango
atk json_glib gobjectIntrospection
atk json_glib gobjectIntrospection libxcb
];
configureFlags = [ "--enable-introspection" ]; # needed by muffin AFAIK