2018-08-20 22:31:18 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3, ninja, vala
|
|
|
|
, desktop-file-utils, gettext, libxml2, gtk3, granite, libgee, bamf, libcanberra
|
2019-06-11 08:26:53 +02:00
|
|
|
, libcanberra-gtk3, gnome-desktop, mutter, clutter, plank, elementary-icon-theme
|
|
|
|
, elementary-settings-daemon, wrapGAppsHook }:
|
2018-08-20 22:31:18 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gala";
|
2019-07-22 09:14:56 +02:00
|
|
|
version = "unstable-2019-07-21"; # Is tracking https://github.com/elementary/gala/commits/stable/juno
|
2018-08-20 22:31:18 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elementary";
|
|
|
|
repo = pname;
|
2019-07-22 09:14:56 +02:00
|
|
|
rev = "50694796d4c8f0ca92517d5a628b0efdf748279c";
|
|
|
|
sha256 = "17d0hd2145mrf8y5ws3xypdbwj72qv7hrrp6p6lm4k16xd96yznr";
|
2018-08-20 22:31:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = pantheon.updateScript {
|
|
|
|
repoName = pname;
|
|
|
|
versionPolicy = "master";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|