9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, alsaLib, boost, bzip2, fftw, fftwFloat, libfishsound
|
|
, libid3tag, liblo, libmad, liboggz, libpulseaudio, libsamplerate
|
|
, libsndfile, lrdf, opusfile, portaudio, rubberband, serd, sord, capnproto
|
|
, wrapQtAppsHook, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sonic-lineup";
|
|
version = "1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://code.soundsoftware.ac.uk/attachments/download/2765/${pname}-${version}.tar.gz";
|
|
sha256 = "0k45k9fawcm4s5yy05x00pgww7j8m7k2cxcc7g0fn9vqy7vcbq9h";
|
|
};
|
|
|
|
buildInputs =
|
|
[ alsaLib boost bzip2 fftw fftwFloat libfishsound libid3tag liblo
|
|
libmad liboggz libpulseaudio libsamplerate libsndfile lrdf opusfile
|
|
portaudio rubberband serd sord capnproto
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config wrapQtAppsHook ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# comment out the tests
|
|
preConfigure = ''
|
|
sed -i 's/sub_test_svcore_/#sub_test_svcore_/' sonic-lineup.pro
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Comparative visualisation of related audio recordings";
|
|
homepage = "https://www.sonicvisualiser.org/sonic-lineup/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.vandenoever ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|