summary refs log tree commit diff
path: root/pkgs/development/libraries/speex/default.nix
blob: 6aceef78eea2fc829bb8c3614a4c2f71af105956 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, libogg }:

stdenv.mkDerivation rec {
  name = "speex-1.2rc1";

  src = fetchurl {
    url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz";
    sha256 = "19mpkhbz3s08snvndn0h1dk2j139max6b0rr86nnsjmxazf30brl";
  };

  buildInputs = [ libogg ];

  outputs = [ "dev" "out" "bin" "doc" ];

  meta = {
    homepage = http://www.speex.org/;
    description = "A audio compression codec designed for speech";
  };
}