mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
62 lines
1 KiB
Nix
62 lines
1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, autoconf-archive
|
|
, alsa-lib
|
|
, fftw
|
|
, iniparser
|
|
, libpulseaudio
|
|
, pipewire
|
|
, ncurses
|
|
, pkgconf
|
|
, SDL2
|
|
, libGL
|
|
, withSDL2 ? false
|
|
, withPipewire ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cava";
|
|
version = "0.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "karlstav";
|
|
repo = "cava";
|
|
rev = version;
|
|
hash = "sha256-W/2B9iTcO2F2vHQzcbg/6pYBwe+rRNfADdOiw4NY9Jk=";
|
|
};
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
fftw
|
|
libpulseaudio
|
|
ncurses
|
|
iniparser
|
|
] ++ lib.optionals withSDL2 [
|
|
SDL2
|
|
libGL
|
|
] ++ lib.optionals withPipewire [
|
|
pipewire
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
autoconf-archive
|
|
pkgconf
|
|
];
|
|
|
|
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.linux;
|
|
mainProgram = "cava";
|
|
};
|
|
}
|