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
43 lines
919 B
Nix
43 lines
919 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
python3,
|
|
libpulseaudio,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pulsemixer";
|
|
version = "1.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GeorgeFilipkin";
|
|
repo = "pulsemixer";
|
|
rev = version;
|
|
sha256 = "1jagx9zmz5pfsld8y2rj2kqg6ww9f6vqiawfy3vhqc49x3xx92p4";
|
|
};
|
|
|
|
inherit libpulseaudio;
|
|
|
|
buildInputs = [ python3 ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
install pulsemixer $out/bin/
|
|
'';
|
|
|
|
postFixup = ''
|
|
substituteInPlace "$out/bin/pulsemixer" \
|
|
--replace-fail "libpulse.so.0" "$libpulseaudio/lib/libpulse${stdenv.hostPlatform.extensions.sharedLibrary}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Cli and curses mixer for pulseaudio";
|
|
homepage = "https://github.com/GeorgeFilipkin/pulsemixer";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.woffs ];
|
|
platforms = platforms.all;
|
|
mainProgram = "pulsemixer";
|
|
};
|
|
}
|