Fix GConf from Gnome 2.26

svn path=/nixpkgs/trunk/; revision=16751
This commit is contained in:
Michael Raskin
2009-08-17 18:31:42 +00:00
parent dd9f68b1f5
commit a194af141b
3 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
args: with args;
assert stdenv ? glibc;
stdenv.mkDerivation rec {
name = "PolicyKit-0.9";
src = fetchurl {
url = "http://hal.freedesktop.org/releases/${name}.tar.gz";
sha256 = "f40c7c6bec19d7dba2335bddcffd0457494409a0dfce11d888c748dc892e80b7";
};
buildInputs = [
pkgconfig expat intltool glib dbus dbus_glib pam gettext
];
}