lxappearance: default to Gtk3

- make Gtk3 the default
- remove lxappearance-gtk3
- add lxappearance-gtk2
This commit is contained in:
José Romildo Malaquias 2020-06-03 12:28:34 -03:00
parent fd9d37e271
commit 6e3b3bf117
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, intltool, pkgconfig, libX11, gtk2, withGtk3 ? false, gtk3 }:
{ stdenv, fetchurl, intltool, pkgconfig, libX11, gtk2, withGtk3 ? true, gtk3 }:
stdenv.mkDerivation rec {
name = "lxappearance-0.6.3";

View File

@ -275,6 +275,7 @@ mapAliases ({
lua5_1_sockets = lua51Packages.luasocket; # added 2017-05-02
lua5_expat = luaPackages.luaexpat; # added 2017-05-02
lua5_sec = luaPackages.luasec; # added 2017-05-02
lxappearance-gtk3 = throw "lxappearance-gtk3 has been removed. Use lxappearance instead, which now defaults to Gtk3"; # added 2020-06-03
m3d-linux = m33-linux; # added 2016-08-13
man_db = man-db; # added 2016-05
manpages = man-pages; # added 2015-12-06

View File

@ -9536,12 +9536,11 @@ in
nodejs = nodejs-13_x;
};
lxappearance = callPackage ../desktops/lxde/core/lxappearance {
gtk2 = gtk2-x11;
};
lxappearance = callPackage ../desktops/lxde/core/lxappearance { };
lxappearance-gtk3 = lxappearance.override {
withGtk3 = true;
lxappearance-gtk2 = callPackage ../desktops/lxde/core/lxappearance {
gtk2 = gtk2-x11;
withGtk3 = false;
};
lxmenu-data = callPackage ../desktops/lxde/core/lxmenu-data.nix { };