Files
Marcin Serwin 8e903b92c1 maintainers: drop codyopel
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2026-02-15 18:30:39 +01:00

41 lines
735 B
Nix

{
lib,
stdenv,
version,
src,
liboggSupport ? true,
libogg ? null, # if disabled only the library will be built
prePatch ? "",
...
}:
# The celt codec has been deprecated and is now a part of the opus codec
stdenv.mkDerivation {
pname = "celt";
inherit version;
inherit src;
outputs = [
"out"
"dev"
];
inherit prePatch;
buildInputs = [ ] ++ lib.optional liboggSupport libogg;
doCheck = false; # fails
meta = {
description = "Ultra-low delay audio codec";
homepage = "https://gitlab.xiph.org/xiph/celt"; # http://www.celt-codec.org/ is gone
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [
raskin
];
platforms = lib.platforms.unix;
};
}