nixpkgs/pkgs/desktops/gnome-2/desktop/libwnck/default.nix
Yury G. Kudryashov e60fe8673b gnome: use callPackage, move to gnome-2
gnome28 was a mix of packages from various releases, so do not mention 2.28 in
the attribute name.

svn path=/nixpkgs/trunk/; revision=29721
2011-10-08 16:58:32 +00:00

11 lines
320 B
Nix

{stdenv, fetchurl, pkgconfig, libX11, gtk, intltool}:
stdenv.mkDerivation {
name = "libwnck-2.28.0";
src = fetchurl {
url = mirror://gnome/sources/libwnck/2.28/libwnck-2.28.0.tar.bz2;
sha256 = "0ixr2sffbcm6gn29vmli7x30cfi1848w8vgdhy93m8zg5xny62yr";
};
buildInputs = [ pkgconfig libX11 gtk intltool ];
}