89 lines
1.5 KiB
Nix
89 lines
1.5 KiB
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, pantheon
|
||
|
, pkgconfig
|
||
|
, meson
|
||
|
, python3
|
||
|
, ninja
|
||
|
, vala
|
||
|
, desktop-file-utils
|
||
|
, gettext
|
||
|
, libxml2
|
||
|
, gtk3
|
||
|
, granite
|
||
|
, libgee
|
||
|
, bamf
|
||
|
, libcanberra
|
||
|
, libcanberra-gtk3
|
||
|
, gnome-desktop
|
||
|
, mutter
|
||
|
, clutter
|
||
|
, plank
|
||
|
, elementary-icon-theme
|
||
|
, elementary-settings-daemon
|
||
|
, wrapGAppsHook
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "gala";
|
||
|
version = "3.3.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "elementary";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "02g6x190lylng8d07pwx2bqcc71rq48f0dxh30mgndfii6k21qgs";
|
||
|
};
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = pantheon.updateScript {
|
||
|
attrPath = "pantheon.${pname}";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
desktop-file-utils
|
||
|
gettext
|
||
|
libxml2
|
||
|
meson
|
||
|
ninja
|
||
|
pkgconfig
|
||
|
python3
|
||
|
vala
|
||
|
wrapGAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
bamf
|
||
|
clutter
|
||
|
elementary-icon-theme
|
||
|
gnome-desktop
|
||
|
elementary-settings-daemon
|
||
|
granite
|
||
|
gtk3
|
||
|
libcanberra
|
||
|
libcanberra-gtk3
|
||
|
libgee
|
||
|
mutter
|
||
|
plank
|
||
|
];
|
||
|
|
||
|
patches = [
|
||
|
./plugins-dir.patch
|
||
|
./use-new-notifications-default.patch
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
chmod +x build-aux/meson/post_install.py
|
||
|
patchShebangs build-aux/meson/post_install.py
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "A window & compositing manager based on mutter and designed by elementary for use with Pantheon";
|
||
|
homepage = "https://github.com/elementary/gala";
|
||
|
license = licenses.gpl3Plus;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = pantheon.maintainers;
|
||
|
};
|
||
|
}
|