2012-03-19 04:36:51 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig, libX11, gtk3, intltool}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-01-05 18:50:03 +00:00
|
|
|
name = "libwnck-3.4.7";
|
2012-03-19 04:36:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-01-05 18:50:03 +00:00
|
|
|
url = mirror://gnome/sources/libwnck/3.4/libwnck-3.4.7.tar.xz;
|
|
|
|
sha256 = "d48ac9c7f50c0d563097f63d07bcc83744c7d92a1b4ef65e5faeab32b5ccb723";
|
2012-03-19 04:36:51 +00:00
|
|
|
};
|
|
|
|
|
2014-01-05 18:50:03 +00:00
|
|
|
patches = [ ./install_introspection_to_prefix.patch ];
|
|
|
|
|
2012-03-19 04:36:51 +00:00
|
|
|
buildInputs = [ pkgconfig intltool ];
|
|
|
|
propagatedBuildInputs = [ libX11 gtk3 ];
|
|
|
|
}
|