1 { lib, stdenv, version, src
2 , liboggSupport ? true, libogg ? null # if disabled only the library will be built
7 # The celt codec has been deprecated and is now a part of the opus codec
15 outputs = [ "out" "dev" ];
20 ++ lib.optional liboggSupport libogg;
22 doCheck = false; # fails
25 description = "Ultra-low delay audio codec";
26 homepage = "https://gitlab.xiph.org/xiph/celt"; # http://www.celt-codec.org/ is gone
27 license = licenses.bsd2;
28 maintainers = with maintainers; [ codyopel raskin ];
29 platforms = platforms.unix;