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
This commit is contained in:
Yury G. Kudryashov
2011-10-08 16:58:32 +00:00
parent a2d0e3b739
commit e60fe8673b
58 changed files with 153 additions and 355 deletions
@@ -0,0 +1,14 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtkmm, libglade }:
stdenv.mkDerivation rec {
name = "libglademm-2.6.7";
src = fetchurl {
url = "mirror://gnome/sources/libglademm/2.6/${name}.tar.bz2";
sha256 = "1hrbg9l5qb7w0xvr7013qamkckyj0fqc426c851l69zpmhakqm1q";
};
buildInputs = [ pkgconfig intltool ];
propagatedBuildInputs = [ gtkmm libglade ];
}