Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / celt / generic.nix
blob1ddc016d66b1c20b697311730684f91bd37d43cb
1 { lib, stdenv, version, src
2 , liboggSupport ? true, libogg ? null # if disabled only the library will be built
3 , prePatch ? ""
4 , ...
5 }:
7 # The celt codec has been deprecated and is now a part of the opus codec
9 stdenv.mkDerivation {
10   pname = "celt";
11   inherit version;
13   inherit src;
15   outputs = [ "out" "dev" ];
17   inherit prePatch;
19   buildInputs = []
20     ++ lib.optional liboggSupport libogg;
22   doCheck = false; # fails
24   meta = with lib; {
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;
30   };