sonic-visualiser: 4.0.1 -> 4.2
This commit is contained in:
parent
bd5a11f925
commit
19688e1df8
|
@ -1,8 +1,8 @@
|
||||||
# TODO add plugins having various licenses, see http://www.vamp-plugins.org/download.html
|
# TODO add plugins having various licenses, see http://www.vamp-plugins.org/download.html
|
||||||
|
|
||||||
{ stdenv, fetchurl, alsaLib, bzip2, fftw, libjack2, libX11, liblo
|
{ stdenv, fetchurl, alsaLib, bzip2, fftw, libjack2, libX11, liblo
|
||||||
, libmad, libogg, lrdf, librdf_raptor, librdf_rasqal, libsamplerate
|
, libmad, lrdf, librdf_raptor, librdf_rasqal, libsamplerate
|
||||||
, libsndfile, pkgconfig, libpulseaudio, qtbase, qtsvg, redland
|
, libsndfile, pkg-config, libpulseaudio, qtbase, qtsvg, redland
|
||||||
, rubberband, serd, sord, vamp-plugin-sdk, fftwFloat
|
, rubberband, serd, sord, vamp-plugin-sdk, fftwFloat
|
||||||
, capnproto, liboggz, libfishsound, libid3tag, opusfile
|
, capnproto, liboggz, libfishsound, libid3tag, opusfile
|
||||||
, wrapQtAppsHook
|
, wrapQtAppsHook
|
||||||
|
@ -10,13 +10,14 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "sonic-visualiser";
|
pname = "sonic-visualiser";
|
||||||
version = "4.0.1";
|
version = "4.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://code.soundsoftware.ac.uk/attachments/download/2607/${pname}-${version}.tar.gz";
|
url = "https://code.soundsoftware.ac.uk/attachments/download/2755/${pname}-${version}.tar.gz";
|
||||||
sha256 = "14674adzp3chilymna236qyvci3b1zmi3wyz696wk7bcd3ndpsg6";
|
sha256 = "1wsvranhvdl21ksbinbgb55qvs3g2d4i57ssj1vx2aln6m01ms9q";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config wrapQtAppsHook ];
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ libsndfile qtbase qtsvg fftw fftwFloat bzip2 lrdf rubberband
|
[ libsndfile qtbase qtsvg fftw fftwFloat bzip2 lrdf rubberband
|
||||||
libsamplerate vamp-plugin-sdk alsaLib librdf_raptor librdf_rasqal redland
|
libsamplerate vamp-plugin-sdk alsaLib librdf_raptor librdf_rasqal redland
|
||||||
|
@ -27,7 +28,6 @@ stdenv.mkDerivation rec {
|
||||||
# portaudio
|
# portaudio
|
||||||
libpulseaudio
|
libpulseaudio
|
||||||
libmad
|
libmad
|
||||||
libogg # ?
|
|
||||||
libfishsound
|
libfishsound
|
||||||
liblo
|
liblo
|
||||||
libX11
|
libX11
|
||||||
|
@ -37,15 +37,13 @@ stdenv.mkDerivation rec {
|
||||||
opusfile
|
opusfile
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig wrapQtAppsHook ];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
# comment out the tests
|
# comment out the tests
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
sed -i 's/sub_test_svcore_/#sub_test_svcore_/' sonic-visualiser.pro
|
sed -i 's/sub_test_svcore_/#sub_test_svcore_/' sonic-visualiser.pro
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "View and analyse contents of music audio files";
|
description = "View and analyse contents of music audio files";
|
||||||
homepage = "https://www.sonicvisualiser.org/";
|
homepage = "https://www.sonicvisualiser.org/";
|
||||||
|
|
Loading…
Reference in New Issue