Merge pull request #48481 from romildo/upd.deepin-metacity
deepin-metacity: init at 3.22.22
This commit is contained in:
commit
a3d440bcb2
62
pkgs/desktops/deepin/deepin-metacity/default.nix
Normal file
62
pkgs/desktops/deepin/deepin-metacity/default.nix
Normal file
@ -0,0 +1,62 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, intltool, libtool, gnome3, bamf,
|
||||
json-glib, libcanberra-gtk3, libxkbcommon, libstartup_notification,
|
||||
deepin-wallpapers, deepin-desktop-schemas }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "deepin-metacity";
|
||||
version = "3.22.22";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "linuxdeepin";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0gr10dv8vphla6z7zqiyyg3n3ag4rrlz43c4kr7fd5xwx2bfvp3d";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig
|
||||
intltool
|
||||
libtool
|
||||
gnome3.gnome-common
|
||||
gnome3.glib.dev
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gnome3.dconf
|
||||
gnome3.gtk
|
||||
gnome3.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${gnome3.glib.dev}/include/gio-unix-2.0";
|
||||
|
||||
configureFlags = [ "--disable-themes-documentation" ];
|
||||
|
||||
preConfigure = ''
|
||||
HOME=$TMP
|
||||
NOCONFIGURE=1 ./autogen.sh
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -13,6 +13,7 @@ let
|
||||
deepin-icon-theme = callPackage ./deepin-icon-theme { };
|
||||
deepin-image-viewer = callPackage ./deepin-image-viewer { };
|
||||
deepin-menu = callPackage ./deepin-menu { };
|
||||
deepin-metacity = callPackage ./deepin-metacity { };
|
||||
deepin-mutter = callPackage ./deepin-mutter { };
|
||||
deepin-shortcut-viewer = callPackage ./deepin-shortcut-viewer { };
|
||||
deepin-sound-theme = callPackage ./deepin-sound-theme { };
|
||||
|
Loading…
Reference in New Issue
Block a user