2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, version, src
|
2015-02-08 18:30:22 +01:00
|
|
|
, liboggSupport ? true, libogg ? null # if disabled only the library will be built
|
2018-03-25 03:49:12 +02:00
|
|
|
, prePatch ? ""
|
2015-02-08 18:30:22 +01:00
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
|
|
|
|
# The celt codec has been deprecated and is now a part of the opus codec
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "celt";
|
|
|
|
inherit version;
|
2015-02-08 18:30:22 +01:00
|
|
|
|
|
|
|
inherit src;
|
|
|
|
|
2018-03-25 03:49:12 +02:00
|
|
|
inherit prePatch;
|
|
|
|
|
2015-02-08 18:30:22 +01:00
|
|
|
buildInputs = []
|
2021-01-21 18:00:13 +01:00
|
|
|
++ lib.optional liboggSupport libogg;
|
2015-02-08 18:30:22 +01:00
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2015-02-08 18:30:22 +01:00
|
|
|
description = "Ultra-low delay audio codec";
|
2022-02-05 19:47:36 +01:00
|
|
|
homepage = "https://gitlab.xiph.org/xiph/celt"; # http://www.celt-codec.org/ is gone
|
2015-02-08 18:30:22 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ codyopel raskin ];
|
2015-04-26 04:45:54 +02:00
|
|
|
platforms = platforms.unix;
|
2015-02-08 18:30:22 +01:00
|
|
|
};
|
|
|
|
}
|