forked from mirrors/nixpkgs
735199a210
This switches a majority of the applications to using qt5.mkDerivation which automatically adds wrapQtAppsHook. In certain places, where GLib and gtk intersect with Qt, we also needed to use wrapGAppsHook. In these cases there will be multiple wrappers.
67 lines
1.6 KiB
Nix
67 lines
1.6 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, intltool, libtool, gnome3, glib,
|
|
gtk3, libgtop, bamf, json-glib, libcanberra-gtk3, libxkbcommon,
|
|
libstartup_notification, deepin-wallpapers, deepin-desktop-schemas,
|
|
deepin, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "deepin-metacity";
|
|
version = "3.22.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1im0wz1zlxiag4kpp5d4hv0aa0ybr4bizarr3903hrqv0lp46hyx";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
libtool
|
|
glib.dev
|
|
gnome3.gnome-common
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gnome3.dconf
|
|
gtk3
|
|
libgtop
|
|
gnome3.zenity
|
|
bamf
|
|
json-glib
|
|
libcanberra-gtk3
|
|
libstartup_notification
|
|
libxkbcommon
|
|
deepin-wallpapers
|
|
deepin-desktop-schemas
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i src/ui/deepin-background-cache.c \
|
|
-e 's;/usr/share/backgrounds/default_background.jpg;${deepin-wallpapers}/share/backgrounds/deepin/desktop.jpg;'
|
|
'';
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
configureFlags = [ "--disable-themes-documentation" ];
|
|
|
|
preConfigure = ''
|
|
HOME=$TMP
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.updateScript = deepin.updateScript { inherit name; };
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "2D window manager for Deepin";
|
|
homepage = https://github.com/linuxdeepin/deepin-metacity;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|