ec3965d8d0
See #490 discussion. This reverts commit1278859d31
, reversing changes made to0c020c98f9
. Conflicts: pkgs/desktops/xfce/core/xfce4-session.nix (take master) pkgs/lib/misc.nix (auto)
18 lines
452 B
Nix
18 lines
452 B
Nix
{ stdenv, fetchurl, 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 ];
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
meta = {
|
|
inherit (glib.meta) maintainers platforms;
|
|
};
|
|
}
|