1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 02:24:27 +00:00
nixpkgs/pkgs/desktops/gnome-2/desktop/libwnck/default.nix
Yury G. Kudryashov 396fcedaed libwnck-2.30.7
svn path=/nixpkgs/trunk/; revision=32924
2012-03-08 22:45:38 +00:00

13 lines
321 B
Nix

{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 ];
}