f995b919fc
Changes: 7f1e392e03...1a96644c6a
67 lines
1.6 KiB
Nix
67 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, gobject-introspection
|
|
, elementary-icon-theme, elementary-settings-daemon, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gala";
|
|
version = "unstable-2019-02-09"; # Is tracking https://github.com/elementary/gala/commits/stable/juno
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = pname;
|
|
rev = "1a96644c6aac405927499dacb308dea13512e919";
|
|
sha256 = "1zi7xyzhsypf52zzfwf7dwcxgd0skxbsssv1vsxgmswszg23p7i3";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = pantheon.updateScript {
|
|
repoName = pname;
|
|
versionPolicy = "master";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils
|
|
gettext
|
|
gobject-introspection
|
|
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;
|
|
};
|
|
}
|