summary refs log tree commit diff
path: root/pkgs/development/libraries/ortp/default.nix
blob: 4fc51a3ce85b5e0e51723acf62afa94e63c753f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
args: with args;
stdenv.mkDerivation rec {
  name = "ortp-0.13.1";

  src = fetchurl {
    url =
	"http://download.savannah.nongnu.org/releases/linphone/ortp/sources/${name}.tar.gz";
    sha256 = "0k2963v4b15xnf4cpkpgjhsb8ckxpf6vdr8dnw7z3mzilji7391b";
  };

  configureFlags = "--enable-shared --disable-static";

  meta = {
    description = "a Real-Time Transport Protocol (RFC3550) stack under LGPL";
	homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
  };
}