nixpkgs/pkgs/applications/audio/sonic-lineup/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2023-03-24 07:19:13 +00:00
{ lib, stdenv, fetchurl, fetchpatch2, alsa-lib, boost, bzip2, fftw, fftwFloat, libfishsound
, libid3tag, liblo, libmad, liboggz, libpulseaudio, libsamplerate
, libsndfile, lrdf, opusfile, portaudio, rubberband, serd, sord, capnproto
, wrapQtAppsHook, pkg-config
, libjack2
2020-02-22 19:50:47 +00:00
}:
stdenv.mkDerivation rec {
pname = "sonic-lineup";
2020-09-19 12:58:07 +00:00
version = "1.1";
2020-02-22 19:50:47 +00:00
src = fetchurl {
2020-09-19 12:58:07 +00:00
url = "https://code.soundsoftware.ac.uk/attachments/download/2765/${pname}-${version}.tar.gz";
sha256 = "0k45k9fawcm4s5yy05x00pgww7j8m7k2cxcc7g0fn9vqy7vcbq9h";
2020-02-22 19:50:47 +00:00
};
2023-03-24 07:19:13 +00:00
patches = [
(fetchpatch2 {
url = "https://github.com/sonic-visualiser/svcore/commit/5a7b517e43b7f0b3f03b7fc3145102cf4e5b0ffc.patch";
stripLen = 1;
extraPrefix = "svcore/";
sha256 = "sha256-DOCdQqCihkR0g/6m90DbJxw00QTpyVmFzCxagrVWKiI=";
})
./match-vamp.patch
];
2020-02-22 19:50:47 +00:00
buildInputs =
[ alsa-lib boost bzip2 fftw fftwFloat libfishsound libid3tag liblo
libmad liboggz libpulseaudio libsamplerate libsndfile lrdf opusfile
2020-02-22 19:50:47 +00:00
portaudio rubberband serd sord capnproto
libjack2
2020-02-22 19:50:47 +00:00
];
nativeBuildInputs = [ pkg-config wrapQtAppsHook ];
2020-02-22 19:50:47 +00:00
enableParallelBuilding = true;
# comment out the tests
preConfigure = ''
sed -i 's/sub_test_svcore_/#sub_test_svcore_/' sonic-lineup.pro
'';
meta = with lib; {
2020-02-22 19:50:47 +00:00
description = "Comparative visualisation of related audio recordings";
mainProgram = "sonic-lineup";
homepage = "https://www.sonicvisualiser.org/sonic-lineup/";
2020-02-22 19:50:47 +00:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.vandenoever ];
platforms = platforms.linux;
};
}