pantheon.gala: use smooth scroll events to handle mouse wheel in multitasking view
This commit is contained in:
parent
72fe1b1662
commit
7dd57213b3
1 changed files with 19 additions and 10 deletions
|
@ -1,5 +1,7 @@
|
||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
, pantheon
|
, pantheon
|
||||||
, pkg-config
|
, pkg-config
|
||||||
|
@ -38,11 +40,16 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1phnhj731kvk8ykmm33ypcxk8fkfny9k6kdapl582qh4d47wcy6f";
|
sha256 = "1phnhj731kvk8ykmm33ypcxk8fkfny9k6kdapl582qh4d47wcy6f";
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
patches = [
|
||||||
updateScript = nix-update-script {
|
./plugins-dir.patch
|
||||||
attrPath = "pantheon.${pname}";
|
# Multitasking view: Don't use smooth scroll events to handle mouse wheel
|
||||||
};
|
# Avoid breaking the multitasking view scroll once xf86-input-libinput 1.2.0 lands
|
||||||
};
|
# https://github.com/elementary/gala/pull/1266
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/elementary/gala/commit/d2dcfdefdf97c1b49654179a7acd01ebfe017308.patch";
|
||||||
|
sha256 = "sha256-2lKrCz3fSjrfKfysuUHzeUjhmMm84K47n882CLpfAyg=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
desktop-file-utils
|
desktop-file-utils
|
||||||
|
@ -73,15 +80,17 @@ stdenv.mkDerivation rec {
|
||||||
mutter
|
mutter
|
||||||
];
|
];
|
||||||
|
|
||||||
patches = [
|
|
||||||
./plugins-dir.patch
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
chmod +x build-aux/meson/post_install.py
|
chmod +x build-aux/meson/post_install.py
|
||||||
patchShebangs build-aux/meson/post_install.py
|
patchShebangs build-aux/meson/post_install.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = nix-update-script {
|
||||||
|
attrPath = "pantheon.${pname}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A window & compositing manager based on mutter and designed by elementary for use with Pantheon";
|
description = "A window & compositing manager based on mutter and designed by elementary for use with Pantheon";
|
||||||
homepage = "https://github.com/elementary/gala";
|
homepage = "https://github.com/elementary/gala";
|
||||||
|
|
Loading…
Reference in a new issue