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
84 lines
1.5 KiB
Nix
84 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
replaceVars,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
vala,
|
|
granite,
|
|
libgee,
|
|
gettext,
|
|
gtk3,
|
|
json-glib,
|
|
switchboard-with-plugs,
|
|
wingpanel,
|
|
zeitgeist,
|
|
bc,
|
|
libhandy,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wingpanel-applications-menu";
|
|
version = "8.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = "applications-menu";
|
|
rev = version;
|
|
sha256 = "sha256-bwQI41Znm75GFoXxSbWkY9daAJTMvUo+UHyyPmvzOUA=";
|
|
};
|
|
|
|
patches = [
|
|
(replaceVars ./fix-paths.patch {
|
|
bc = "${bc}/bin/bc";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
];
|
|
|
|
buildInputs = [
|
|
granite
|
|
gtk3
|
|
json-glib
|
|
libgee
|
|
libhandy
|
|
switchboard-with-plugs
|
|
wingpanel
|
|
zeitgeist
|
|
]
|
|
++
|
|
# applications-menu has a plugin to search switchboard plugins
|
|
# see https://github.com/NixOS/nixpkgs/issues/100209
|
|
# wingpanel's wrapper will need to pick up the fact that
|
|
# applications-menu needs a version of switchboard with all
|
|
# its plugins for search.
|
|
switchboard-with-plugs.buildInputs;
|
|
|
|
mesonFlags = [
|
|
"--sysconfdir=${placeholder "out"}/etc"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight and stylish app launcher for Pantheon";
|
|
homepage = "https://github.com/elementary/applications-menu";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
teams = [ teams.pantheon ];
|
|
};
|
|
}
|