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
52 lines
926 B
Nix
52 lines
926 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
vala,
|
|
pkg-config,
|
|
gettext,
|
|
ninja,
|
|
alsa-lib,
|
|
xfce4-panel,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "xfce4-alsa-plugin";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "equeim";
|
|
repo = "xfce4-alsa-plugin";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-95uVHDyXji8dut7qfE5V/uBBt6DPYF/YfudHe7HJcE8=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
vala
|
|
pkg-config
|
|
gettext
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
xfce4-panel
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/equeim/xfce4-alsa-plugin";
|
|
description = "Simple ALSA volume control for xfce4-panel";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ ProxyVT ];
|
|
teams = [ lib.teams.xfce ];
|
|
};
|
|
})
|