Move libwnck to top-level

svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33253
This commit is contained in:
Yury G. Kudryashov
2012-03-19 04:36:47 +00:00
parent 3d0b778848
commit b113433d51
3 changed files with 3 additions and 3 deletions
@@ -0,0 +1,12 @@
{stdenv, fetchurl, pkgconfig, libX11, gtk, intltool}:
stdenv.mkDerivation {
name = "libwnck-2.30.7";
src = fetchurl {
url = mirror://gnome/sources/libwnck/2.30/libwnck-2.30.7.tar.xz;
sha256 = "15713yl0f8f3p99jzqqfmbicrdswd3vwpx7r3bkf1bgh6d9lvs4b";
};
buildInputs = [ pkgconfig libX11 gtk intltool ];
}