Move gnome3.GConf to GConf3

svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33201
This commit is contained in:
Yury G. Kudryashov
2012-03-17 16:46:02 +00:00
parent ddb01436a0
commit d1860f6def
4 changed files with 25 additions and 25 deletions

View File

@@ -3,7 +3,5 @@
{
clutter = callPackage ./platform/clutter.nix { };
GConf = callPackage ./platform/GConf.nix { };
gnome_user_docs = callPackage ./platform/gnome-user-docs.nix { };
}

View File

@@ -1,23 +0,0 @@
{ stdenv, fetchurl_gnome, glib, dbus_glib, pkgconfig, libxml2, gtk, intltool }:
stdenv.mkDerivation rec {
name = src.pkgname;
src = fetchurl_gnome {
project = "GConf";
major = "3"; minor = "2"; patchlevel = "0"; extension = "xz";
sha256 = "02vdm6slc2mdw0yfl6lh7qawqcb2k7sk6br21fdj1vfp55ap8wgk";
};
propagatedBuildInputs = [ glib dbus_glib libxml2 gtk ];
buildNativeInputs = [ pkgconfig intltool ];
configureFlags = "--disable-orbit";
meta = {
homepage = http://projects.gnome.org/gconf/;
description = "A system for storing application preferences";
maintainers = [ stdenv.lib.maintainers.urkud ];
inherit (gtk.meta) platforms;
};
}