blob: 6bfd35160632ad5ebbd025333d77b38980624240 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
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;
};
}
|