gnome-podcasts: 0.7.1 -> 0.7.2 (#373846)
[NixPkgs.git] / pkgs / by-name / li / liblc3 / package.nix
blob0da8995a793ff4bcea20d2677f3709574dc4eea4
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   meson,
6   ninja,
7 }:
9 let
10   name = "liblc3";
11   version = "1.1.1";
13 stdenv.mkDerivation {
14   pname = name;
15   version = version;
17   src = fetchFromGitHub {
18     owner = "google";
19     repo = "liblc3";
20     rev = "v${version}";
21     sha256 = "sha256-h9qy04FqlHXp0bOUoP4+WqI0yrM78e56S+DEn3HztYo=";
22   };
24   outputs = [
25     "out"
26     "dev"
27   ];
29   nativeBuildInputs = [
30     meson
31     ninja
32   ];
34   meta = with lib; {
35     description = "LC3 (Low Complexity Communication Codec) is an efficient low latency audio codec";
36     homepage = "https://github.com/google/liblc3";
37     license = licenses.asl20;
38     platforms = platforms.unix;
39     maintainers = with maintainers; [ jansol ];
40   };