Skip to content

Commit

Permalink
liblc3: init at 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jansol committed Oct 9, 2022
1 parent 3e675d0 commit 9b734d1
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/development/libraries/liblc3/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 9b734d1

Please sign in to comment.