Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
974 B
Nix
53 lines
974 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
alsa-lib,
|
|
libjack2,
|
|
fftwFloat,
|
|
libclthreads,
|
|
libclxclient,
|
|
libX11,
|
|
libXft,
|
|
zita-alsa-pcmi,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.4";
|
|
pname = "japa";
|
|
|
|
src = fetchurl {
|
|
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-t9wlZr+pE5u6yTpATWDQseC/rf4TFbtG0X9tnTdkB8I=";
|
|
};
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
libjack2
|
|
fftwFloat
|
|
libclthreads
|
|
libclxclient
|
|
libX11
|
|
libXft
|
|
zita-alsa-pcmi
|
|
];
|
|
|
|
preConfigure = ''
|
|
cd ./source/
|
|
'';
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"SUFFIX=''"
|
|
];
|
|
|
|
meta = {
|
|
description = "'perceptual' or 'psychoacoustic' audio spectrum analyser for JACK and ALSA";
|
|
homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/index.html";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "japa";
|
|
};
|
|
}
|