mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
80 lines
2.0 KiB
Nix
80 lines
2.0 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, python3
|
|
, dconf
|
|
, glib
|
|
, deepin-gtk-theme
|
|
, deepin-icon-theme
|
|
, deepin-sound-theme
|
|
, deepin-wallpapers
|
|
, deepin
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "deepin-desktop-schemas";
|
|
version = "3.13.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1c69j6s7561zb1hrd1j3ihji1nvpgfzfgnp6svsv8jd8dg8vs8l1";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3
|
|
glib.dev
|
|
deepin.setupHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dconf
|
|
deepin-gtk-theme
|
|
deepin-icon-theme
|
|
deepin-sound-theme
|
|
deepin-wallpapers
|
|
];
|
|
|
|
postPatch = ''
|
|
searchHardCodedPaths
|
|
|
|
# fix default background url
|
|
sed -i -e 's,/usr/share/backgrounds/default_background.jpg,/usr/share/backgrounds/deepin/desktop.jpg,' \
|
|
overrides/common/com.deepin.wrap.gnome.desktop.override
|
|
|
|
fixPath ${deepin-wallpapers} /usr/share/backgrounds \
|
|
overrides/common/com.deepin.wrap.gnome.desktop.override
|
|
|
|
fixPath ${deepin-wallpapers} /usr/share/wallpapers/deepin \
|
|
schemas/com.deepin.dde.appearance.gschema.xml
|
|
|
|
# still hardcoded paths:
|
|
# /etc/gnome-settings-daemon/xrandr/monitors.xml ? gnome3.gnome-settings-daemon
|
|
# /usr/share/backgrounds/gnome/adwaita-lock.jpg ? gnome3.gnome-backgrounds
|
|
# /usr/share/backgrounds/gnome/adwaita-timed.xml gnome3.gnome-backgrounds
|
|
# /usr/share/desktop-directories
|
|
'';
|
|
|
|
makeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
];
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
postInstall = ''
|
|
glib-compile-schemas --strict $out/share/glib-2.0/schemas
|
|
searchHardCodedPaths $out
|
|
'';
|
|
|
|
passthru.updateScript = deepin.updateScript { inherit pname version src; };
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GSettings deepin desktop-wide schemas";
|
|
homepage = "https://github.com/linuxdeepin/deepin-desktop-schemas";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|