Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.3 KiB
Nix
68 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,
|
|
pantheon-wayland,
|
|
wrapGAppsHook4,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elementary-shortcut-overlay";
|
|
version = "8.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = "shortcut-overlay";
|
|
rev = version;
|
|
sha256 = "sha256-oGExG7eWiZqXEPBRuLRTnbgo3hRVKo8vO51vMBPoQb0=";
|
|
};
|
|
|
|
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
|
|
pantheon-wayland
|
|
];
|
|
|
|
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;
|
|
teams = [ teams.pantheon ];
|
|
mainProgram = "io.elementary.shortcut-overlay";
|
|
};
|
|
}
|