forked from mirrors/nixpkgs
0b59f4212c
The same way we want them in GNOME in nixpkgs. Didn't touch the greeter expression because I have a branch where it's already rewritten.
89 lines
1.6 KiB
Nix
89 lines
1.6 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 = "unstable-2019-07-21"; # Is tracking https://github.com/elementary/gala/commits/stable/juno
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = pname;
|
|
rev = "50694796d4c8f0ca92517d5a628b0efdf748279c";
|
|
sha256 = "17d0hd2145mrf8y5ws3xypdbwj72qv7hrrp6p6lm4k16xd96yznr";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|