lol
at 16.09-beta 23 lines 622 B view raw
1{ stdenv, fetchFromGitHub, cmake, speexdsp, pkgconfig }: 2 3stdenv.mkDerivation rec { 4 version = "1.0.2"; 5 name = "libebur128-${version}"; 6 7 src = fetchFromGitHub { 8 owner = "jiixyj"; 9 repo = "libebur128"; 10 rev = "v${version}"; 11 sha256 = "19vy3ldbf931hjvn9jf9dvw1di3yx9ljxyk2yp5cnac1wqiza3jm"; 12 }; 13 14 buildInputs = [ cmake speexdsp pkgconfig ]; 15 16 meta = with stdenv.lib; { 17 description = "Implementation of the EBU R128 loudness standard"; 18 homepage = https://github.com/jiixyj/libebur128; 19 license = licenses.mit; 20 maintainers = [ maintainers.andrewrk ]; 21 platforms = platforms.unix; 22 }; 23}