about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/codec2/default.nix
blob: 9f4c4c3b6b36525a44012be6e4f1fc2b1ab58c70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchsvn, cmake } :

let
  version = "0.8";

in stdenv.mkDerivation {
  name = "codec2-${version}";

  src = fetchsvn {
    url = "https://svn.code.sf.net/p/freetel/code/codec2/branches/${version}";
    sha256 = "0qbyaqdn37253s30n6m2ric8nfdsxhkslb9h572kdx18j2yjccki";
  };

  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 ];
  };
}