e60fe8673b
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
15 lines
444 B
Nix
15 lines
444 B
Nix
{ stdenv, fetchurl, pkgconfig, dbus_glib, glib, ORBit2, libxml2
|
|
, policykit, intltool, dbus_libs }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "GConf-2.26.2";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/platform/2.26/2.26.2/sources/GConf-2.26.2.tar.bz2;
|
|
sha256 = "1vb7hjxddy54g4vch936621g66n0mhi3wkhm9lwqh449vdqg4yki";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig ORBit2 dbus_libs dbus_glib libxml2 policykit intltool ];
|
|
propagatedBuildInputs = [ glib ];
|
|
}
|