Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

63 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
unstableGitUpdater,
replaceVars,
meson,
ninja,
pkg-config,
vala,
gtk3,
libindicator-gtk3,
pantheon,
indicator-application-gtk3,
}:
stdenv.mkDerivation {
pname = "wingpanel-indicator-ayatana";
version = "2.0.7-unstable-2023-04-18";
src = fetchFromGitHub {
owner = "Lafydev";
repo = "wingpanel-indicator-ayatana";
rev = "d554663b4e199d44c1f1d53b5cc39b9a775b3f1c";
sha256 = "sha256-dEk0exLh+TGuQt7be2YRTS2EzPD55+edR8WibthXwhI=";
};
patches = [
# Tells the indicator the path for libapplication.so
(replaceVars ./fix-libapplication-dir.patch {
indicator_application = indicator-application-gtk3;
})
];
nativeBuildInputs = [
meson
ninja
pkg-config
vala
];
buildInputs = [
gtk3
libindicator-gtk3
pantheon.granite
pantheon.wingpanel
];
passthru = {
updateScript = unstableGitUpdater {
url = "https://github.com/Lafydev/wingpanel-indicator-ayatana.git";
};
};
meta = with lib; {
description = "Ayatana Compatibility Indicator for Wingpanel";
homepage = "https://github.com/Lafydev/wingpanel-indicator-ayatana";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
teams = [ teams.pantheon ];
};
}