2020-09-14 19:14:56 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, fftw, ncurses5, libpulseaudio, makeWrapper }:
|
2016-02-06 21:25:22 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-07 17:16:55 +00:00
|
|
|
version = "1.8";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cli-visualizer";
|
2016-02-06 21:25:22 +00:00
|
|
|
|
2017-01-03 11:37:17 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dpayne";
|
|
|
|
repo = "cli-visualizer";
|
2019-04-07 17:16:55 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "003mbbwsz43mg3d7llphpypqa9g7rs1p1cdbqi1mbc2bfrc1gcq2";
|
2016-02-06 21:25:22 +00:00
|
|
|
};
|
|
|
|
|
2016-06-19 08:18:30 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed '1i#include <cmath>' -i src/Transformer/SpectrumCircleTransformer.cpp
|
|
|
|
'';
|
|
|
|
|
2020-09-14 19:14:56 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2017-10-13 12:47:23 +00:00
|
|
|
buildInputs = [ fftw ncurses5 libpulseaudio makeWrapper ];
|
2016-02-06 21:25:22 +00:00
|
|
|
|
|
|
|
buildFlags = [ "ENABLE_PULSE=1" ];
|
|
|
|
|
2020-09-14 19:14:56 +00:00
|
|
|
postInstall = ''
|
2017-10-13 12:47:23 +00:00
|
|
|
# See https://github.com/dpayne/cli-visualizer/issues/62#issuecomment-330738075
|
|
|
|
wrapProgram $out/bin/vis --set TERM rxvt-256color
|
2016-02-06 21:25:22 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/dpayne/cli-visualizer";
|
2016-02-06 21:25:22 +00:00
|
|
|
description = "CLI based audio visualizer";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
|
2016-02-06 21:25:22 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|