mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 11:17:45 +00:00
liblc3: init at 1.0.1
This commit is contained in:
parent
3e675d06f5
commit
9b734d1239
36
pkgs/development/libraries/liblc3/default.nix
Normal file
36
pkgs/development/libraries/liblc3/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user