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
51 lines
941 B
Nix
51 lines
941 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
libX11,
|
|
libXft,
|
|
libclthreads,
|
|
libclxclient,
|
|
libjack2,
|
|
libpng,
|
|
libsndfile,
|
|
zita-resampler,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ebumeter";
|
|
version = "0.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.xz";
|
|
hash = "sha256-U2ZpNfvy+X1RdA9Q4gvFYzAxlgc6kYjJpQ/0sEX0A4I=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXft
|
|
libclthreads
|
|
libclxclient
|
|
libjack2
|
|
libpng
|
|
libsndfile
|
|
zita-resampler
|
|
];
|
|
|
|
preConfigure = ''
|
|
cd source
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Level metering according to the EBU R-128 recommendation";
|
|
homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/index.html";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|