mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
81 lines
1.4 KiB
Nix
81 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
autoconf-archive,
|
|
alsa-lib,
|
|
fftw,
|
|
iniparser,
|
|
libGL,
|
|
libpulseaudio,
|
|
libtool,
|
|
ncurses,
|
|
pipewire,
|
|
pkgconf,
|
|
portaudio,
|
|
SDL2,
|
|
versionCheckHook,
|
|
withSDL2 ? false,
|
|
withPipewire ? stdenv.hostPlatform.isLinux,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cava";
|
|
version = "0.10.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "karlstav";
|
|
repo = "cava";
|
|
rev = version;
|
|
hash = "sha256-y6RslsU/zmr0Ai/rnr73N3OtjuBcWa3JCwh9P5GkNss=";
|
|
};
|
|
|
|
buildInputs =
|
|
[
|
|
fftw
|
|
iniparser
|
|
libpulseaudio
|
|
libtool
|
|
ncurses
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
alsa-lib
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
portaudio
|
|
]
|
|
++ lib.optionals withSDL2 [
|
|
libGL
|
|
SDL2
|
|
]
|
|
++ lib.optionals withPipewire [
|
|
pipewire
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
autoconf-archive
|
|
pkgconf
|
|
versionCheckHook
|
|
];
|
|
doInstallCheck = true;
|
|
versionCheckProgramArg = "-v";
|
|
|
|
preAutoreconf = ''
|
|
echo ${version} > version
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Console-based Audio Visualizer for Alsa";
|
|
homepage = "https://github.com/karlstav/cava";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
offline
|
|
mirrexagon
|
|
];
|
|
platforms = platforms.unix;
|
|
mainProgram = "cava";
|
|
};
|
|
}
|