summary refs log tree commit diff
path: root/pkgs/development/libraries/libopusenc/default.nix
blob: c2d77185e6922605c61cc463c18666f6c94d7bc8 (plain) (blame)
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
{ lib, stdenv, fetchurl, pkg-config, libopus }:

let
  version = "0.2.1";
in
stdenv.mkDerivation {
  pname = "libopusenc";
  inherit version;

  src = fetchurl {
    url = "https://archive.mozilla.org/pub/opus/libopusenc-${version}.tar.gz";
    sha256 = "1ffb0vhlymlsq70pxsjj0ksz77yfm2x0a1x8q50kxmnkm1hxp642";
  };

  outputs = [ "out" "dev" ];

  doCheck = true;

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libopus ];

  meta = with lib; {
    description = "Library for encoding .opus audio files and live streams";
    license = licenses.bsd3;
    homepage = "https://www.opus-codec.org/";
    platforms = platforms.unix;
    maintainers = with maintainers; [ pmiddend ];
  };
}