mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
Add gsettings-desktop-schemas to gnome-2
svn path=/nixpkgs/branches/glib-2.30/; revision=31413
This commit is contained in:
@@ -15,6 +15,8 @@
|
||||
|
||||
esound = callPackage ./platform/esound { };
|
||||
|
||||
gsettings_desktop_schemas = callPackage ./platform/gsettings-desktop-schemas { };
|
||||
|
||||
libIDL = callPackage ./platform/libIDL {
|
||||
gettext = if stdenv.isDarwin then gettext else null;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
{ stdenv, fetchurl, xz, glib, pkgconfig, intltool }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
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 ];
|
||||
buildNativeInputs = [ pkgconfig xz intltool ];
|
||||
|
||||
meta = {
|
||||
inherit (glib.meta) maintainers platforms;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user