{ stdenv , lib , fetchFromGitHub , cmake , pkg-config , wrapQtAppsHook , qtbase , dtkgui , gsettings-qt , gtk3 , kconfig , kwindowsystem , kglobalaccel , xorg , iconv }: stdenv.mkDerivation rec { pname = "dde-appearance"; version = "1.1.25"; src = fetchFromGitHub { owner = "linuxdeepin"; repo = pname; rev = version; hash = "sha256-H9TvWF6Q0lX4GF4mQ71E3SUqWbhH7dzHIlScovbN7lM="; }; patches = [ ./fix-custom-wallpapers-path.diff ]; postPatch = '' substituteInPlace src/service/impl/appearancemanager.cpp \ src/service/modules/api/compatibleengine.cpp \ src/service/modules/subthemes/customtheme.cpp \ --replace "/usr/share" "/run/current-system/sw/share" for file in $(grep -rl "/usr/bin/dde-appearance"); do substituteInPlace $file --replace "/usr/bin/dde-appearance" "$out/bin/dde-appearance" done substituteInPlace src/service/modules/api/themethumb.cpp \ --replace "/usr/lib/deepin-api" "/run/current-system/sw/lib/deepin-api" substituteInPlace fakewm/dbus/deepinwmfaker.cpp \ --replace "/usr/lib/deepin-daemon" "/run/current-system/sw/lib/deepin-daemon" substituteInPlace src/service/modules/api/locale.cpp \ --replace "/usr/share/locale/locale.alias" "${iconv}/share/locale/locale.alias" ''; nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; buildInputs = [ dtkgui gsettings-qt gtk3 kconfig kwindowsystem kglobalaccel xorg.libXcursor xorg.xcbutilcursor ]; cmakeFlags = [ "-DDSG_DATA_DIR=/run/current-system/sw/share/dsg" "-DSYSTEMD_USER_UNIT_DIR=${placeholder "out"}/lib/systemd/user" ]; meta = with lib; { description = "A program used to set the theme and appearance of deepin desktop"; homepage = "https://github.com/linuxdeepin/dde-appearance"; license = licenses.lgpl3Plus; platforms = platforms.linux; maintainers = teams.deepin.members; }; }