summary refs log blame commit diff
path: root/pkgs/development/libraries/codec2/default.nix
blob: 9c31b50c02856bb96641f2d92541cbee7e8e22ee (plain) (tree)
1
2
3
4
5
6
7
8
9
                                    

   
                    

                        

                   
 




                                                                    













                                                                                              
{ stdenv, fetchFromGitHub, cmake } :

let
  version = "0.9.2";

in stdenv.mkDerivation {
  pname = "codec2";
  inherit version;

  src = fetchFromGitHub {
    owner = "drowe67";
    repo = "codec2";
    rev = "v${version}";
    sha256 = "1jpvr7bra8srz8jvnlbmhf8andbaavq5v01qjnp2f61za93rzwba";
  };

  enableParallelBuilding = true;

  nativeBuildInputs = [ cmake ];

  meta = with stdenv.lib; {
    description = "Speech codec designed for communications quality speech at low data rates";
    homepage = http://www.rowetel.com/blog/?page_id=452;
    license = licenses.lgpl21;
    platforms = platforms.linux;
    maintainers = with maintainers; [ markuskowa ];
  };
}