1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
tgcMaintainers,
lib,
rustPlatform,
fetchFromGitHub,
...
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "anyrun-powermenu";
version = "0.0.0-unstable-2025-04-22";
rev = "eb2790cea999febfaac8f994e3936a804e8cba90";
srcHash = "sha256-9GlL/0JWD//aPF6vyJ3XYSQ4BtcKrEghBbOFRR3p/iA=";
cargoHash = "sha256-veQseWcZ7X0Xp5qYH+zN8lWVEzkANgHD4DwV4KR9tiE=";
src = fetchFromGitHub {
owner = "bcyran";
repo = finalAttrs.pname;
hash = finalAttrs.srcHash;
inherit (finalAttrs) rev;
};
meta = {
description = "Powermenu plugin for anyrun.";
homepage = "https://github.com/bcyran/anyrun-powermenu";
# license = [ lib.licenses.mit ];
platforms = lib.platforms.linux;
maintainers = [ tgcMaintainers.zaphyra ];
};
})