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
56 lines
1011 B
Nix
56 lines
1011 B
Nix
{
|
|
fetchFromGitHub,
|
|
gtk3,
|
|
lib,
|
|
libgee,
|
|
libnotify,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
pulseaudio,
|
|
stdenv,
|
|
vala,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "mictray";
|
|
version = "0.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Junker";
|
|
repo = "mictray";
|
|
rev = "1f879aeda03fbe87ae5a761f46c042e09912e1c0";
|
|
sha256 = "0achj6r545c1sigls79c8qdzryz3sgldcyzd3pwak1ymim9i9c74";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libgee
|
|
libnotify
|
|
pulseaudio
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Junker/mictray";
|
|
description = "System tray application for microphone";
|
|
longDescription = ''
|
|
MicTray is a Lightweight system tray application which lets you control the microphone state and volume.
|
|
'';
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.anpryl ];
|
|
mainProgram = "mictray";
|
|
};
|
|
}
|