mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
30 lines
695 B
Nix
30 lines
695 B
Nix
{ 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 ];
|
|
};
|
|
}
|