1 { lib, stdenv, fetchFromGitHub, cmake, speexdsp, pkg-config }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-B6MOSbLfPvadXtXHSvxZCIpAH1Bnj6sItYRp+xH5HDA=";
14 nativeBuildInputs = [ cmake pkg-config ];
15 buildInputs = [ speexdsp ];
18 description = "Implementation of the EBU R128 loudness standard";
19 homepage = "https://github.com/jiixyj/libebur128";
20 license = licenses.mit;
21 maintainers = [ maintainers.andrewrk ];
22 platforms = platforms.unix;