git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, pkg-config
|
|
, meson
|
|
, ninja
|
|
, vala
|
|
, desktop-file-utils
|
|
, gala
|
|
, gsettings-desktop-schemas
|
|
, gtk4
|
|
, glib
|
|
, gnome-settings-daemon
|
|
, granite7
|
|
, libgee
|
|
, mutter
|
|
, wrapGAppsHook4
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elementary-shortcut-overlay";
|
|
version = "8.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = "shortcut-overlay";
|
|
rev = version;
|
|
sha256 = "sha256-HqF2eSNwAzgzwyfNQIeumaGkPYiSc+2OfaD3JRQp4/4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
gala # org.pantheon.desktop.gala.keybindings
|
|
gsettings-desktop-schemas # org.gnome.desktop.wm.keybindings
|
|
glib
|
|
gnome-settings-daemon # org.gnome.settings-daemon.plugins.media-keys
|
|
granite7
|
|
gtk4
|
|
libgee
|
|
mutter # org.gnome.mutter.keybindings
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Native OS-wide shortcut overlay to be launched by Gala";
|
|
homepage = "https://github.com/elementary/shortcut-overlay";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.pantheon.members;
|
|
mainProgram = "io.elementary.shortcut-overlay";
|
|
};
|
|
}
|