···1+{ stdenv, version, src
2+, liboggSupport ? true, libogg ? null # if disabled only the library will be built
3+, ...
4+}:
5+6+# The celt codec has been deprecated and is now a part of the opus codec
7+8+stdenv.mkDerivation rec {
9+ name = "celt-${version}";
10+11+ inherit src;
12+13+ buildInputs = []
14+ ++ stdenv.lib.optional liboggSupport libogg;
15+16+ meta = with stdenv.lib; {
17+ description = "Ultra-low delay audio codec";
18+ homepage = http://www.celt-codec.org/;
19+ license = licenses.bsd2;
20+ maintainers = with maintainers; [ codyopel raskin ];
21+ platform = platforms.unix;
22+ };
23+}