2012-01-18 21:53:01 +01:00
|
|
|
{ stdenv, fetchurl, glib, pkgconfig, intltool }:
|
2012-01-06 19:12:38 +01:00
|
|
|
|
2012-01-06 19:13:26 +01:00
|
|
|
stdenv.mkDerivation {
|
2012-01-06 19:12:38 +01:00
|
|
|
name = "gsettings-desktop-schemas-3.2.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://gnome/sources/gsettings-desktop-schemas/3.2/gsettings-desktop-schemas-3.2.0.tar.xz;
|
|
|
|
sha256 = "0772axkd1nlf3j1lcg0zi5x5jh4zmr25k98dhn7pzppahljaj3hi";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ glib ];
|
2012-01-18 21:53:01 +01:00
|
|
|
buildNativeInputs = [ pkgconfig intltool ];
|
2012-01-06 19:54:02 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
inherit (glib.meta) maintainers platforms;
|
|
|
|
};
|
2012-01-06 19:12:38 +01:00
|
|
|
}
|