* Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...). svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
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;
|
||||
};
|
||||
}
|
||||
+4
-5
@@ -1,16 +1,15 @@
|
||||
args: with args;
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ortp-" + version;
|
||||
name = "ortp-0.13.1";
|
||||
|
||||
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";
|
||||
description = "A Real-Time Transport Protocol (RFC3550) stack";
|
||||
homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user