liblc3: init at 1.0.1

This commit is contained in:
Jan Solanti 2022-10-04 21:27:19 +03:00
parent 3e675d06f5
commit 9b734d1239
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
}:
let
name = "liblc3";
version = "1.0.1";
in
stdenv.mkDerivation {
pname = name;
version = version;
src = fetchFromGitHub {
owner = "google";
repo = "liblc3";
rev = "v${version}";
sha256 = "sha256-W0pCfFmM+6N6+HdGdQ/GBNHjBspkwtlxZC2m2noKGx0=";
};
nativeBuildInputs = [
meson
ninja
];
meta = with lib; {
description = "LC3 (Low Complexity Communication Codec) is an efficient low latency audio codec";
homepage = "https://github.com/google/liblc3";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ jansol ];
};
}

View File

@ -20034,6 +20034,8 @@ with pkgs;
liblcf = callPackage ../development/libraries/liblcf { };
liblc3 = callPackage ../development/libraries/liblc3 { };
libliftoff = callPackage ../development/libraries/libliftoff { };
liblqr1 = callPackage ../development/libraries/liblqr-1 {