mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
Move gnome3.GConf to GConf3
svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33201
This commit is contained in:
parent
ddb01436a0
commit
d1860f6def
@ -3,7 +3,5 @@
|
||||
{
|
||||
clutter = callPackage ./platform/clutter.nix { };
|
||||
|
||||
GConf = callPackage ./platform/GConf.nix { };
|
||||
|
||||
gnome_user_docs = callPackage ./platform/gnome-user-docs.nix { };
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
23
pkgs/development/libraries/GConf/3.x.nix
Normal file
23
pkgs/development/libraries/GConf/3.x.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, glib, dbus_glib, pkgconfig, libxml2, gtk3, intltool, polkit }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "GConf-3.2.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://gnome/sources/GConf/3.2/GConf-3.2.3.tar.xz;
|
||||
sha256 = "0jd1z9gb1b7mv4g07qm554va6idasf3swgrfqflypdh9s38mvdcy";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ glib dbus_glib ];
|
||||
buildInputs = [ polkit gtk3 libxml2 ];
|
||||
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 (gtk3.meta) platforms;
|
||||
};
|
||||
}
|
@ -3463,6 +3463,8 @@ let
|
||||
|
||||
gav = callPackage ../games/gav { };
|
||||
|
||||
GConf3 = callPackage ../development/libraries/GConf/3.x.nix { };
|
||||
|
||||
gdome2 = callPackage ../development/libraries/gdome2 {
|
||||
inherit (gnome) gtkdoc;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user