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
48 lines
988 B
Nix
48 lines
988 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
intltool,
|
|
pkg-config,
|
|
gtk3,
|
|
alsa-lib,
|
|
gettext,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "volumeicon";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Maato";
|
|
repo = "volumeicon";
|
|
rev = version;
|
|
hash = "sha256-zYKC7rOoLf08rV4B43TrGNBcXfSBFxWZCe9bQD9JzaA";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
intltool
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
alsa-lib
|
|
];
|
|
|
|
# Work around regressions introduced by bad interaction between
|
|
# gettext >= 0.25 and autoconf (2.72 at the time of writing).
|
|
env.ACLOCAL = "aclocal -I ${gettext}/share/gettext/m4";
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight volume control that sits in your systray";
|
|
homepage = "https://nullwise.com/pages/volumeicon/volumeicon.html";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ bobvanderlinden ];
|
|
license = licenses.gpl3;
|
|
mainProgram = "volumeicon";
|
|
};
|
|
}
|