nixpkgs/pkgs/development/libraries/liblc3/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
701 B
Nix
Raw Normal View History

2022-10-04 18:27:19 +00:00
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
}:
let
name = "liblc3";
2023-08-15 18:56:53 +00:00
version = "1.0.4";
2022-10-04 18:27:19 +00:00
in
stdenv.mkDerivation {
pname = name;
version = version;
src = fetchFromGitHub {
owner = "google";
repo = "liblc3";
rev = "v${version}";
2023-08-15 18:56:53 +00:00
sha256 = "sha256-nQJgF/cWoCx5TkX4xOaLB9SzvhVXPY29bLh7UwPMWEE=";
2022-10-04 18:27:19 +00:00
};
2023-04-17 07:01:33 +00:00
outputs = [ "out" "dev" ];
2022-10-04 18:27:19 +00:00
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 ];
};
}