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

  src = fetchurl {
    url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
    sha256 = "0gyl0yzfg78sjhbwnwc2g8yn4riwd1wcv183qihgan6z2d5cfbrg";
  };

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