f19180e9c2
svn path=/nixpkgs/branches/stdenv-updates/; revision=10740
17 lines
458 B
Nix
17 lines
458 B
Nix
args: with args;
|
|
stdenv.mkDerivation rec {
|
|
name = "ortp-" + version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/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;
|
|
};
|
|
}
|