summary refs log tree commit diff
path: root/pkgs/development/libraries/ortp
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2008-02-18 20:51:25 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2008-02-18 20:51:25 +0000
commitf19180e9c277828764106c908bbab6cf59517d05 (patch)
tree9a131c9e4e3807d1722997bf92527b4d66645a0d /pkgs/development/libraries/ortp
parent461b3197b545d76abb88b5ae2d3979061b781480 (diff)
ortp: 0.7.1 added (libjingle may need it)
svn path=/nixpkgs/branches/stdenv-updates/; revision=10740
Diffstat (limited to 'pkgs/development/libraries/ortp')
-rw-r--r--pkgs/development/libraries/ortp/0.13.1.nix (renamed from pkgs/development/libraries/ortp/default.nix)8
-rw-r--r--pkgs/development/libraries/ortp/0.7.1.nix16
2 files changed, 19 insertions, 5 deletions
diff --git a/pkgs/development/libraries/ortp/default.nix b/pkgs/development/libraries/ortp/0.13.1.nix
index 4fc51a3ce85b5..ea1cd64b3d271 100644
--- a/pkgs/development/libraries/ortp/default.nix
+++ b/pkgs/development/libraries/ortp/0.13.1.nix
@@ -1,11 +1,9 @@
-
 args: with args;
 stdenv.mkDerivation rec {
-  name = "ortp-0.13.1";
+  name = "ortp-" + version;
 
   src = fetchurl {
-    url =
-	"http://download.savannah.nongnu.org/releases/linphone/ortp/sources/${name}.tar.gz";
+    url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz";
     sha256 = "0k2963v4b15xnf4cpkpgjhsb8ckxpf6vdr8dnw7z3mzilji7391b";
   };
 
@@ -13,6 +11,6 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "a Real-Time Transport Protocol (RFC3550) stack under LGPL";
-	homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
+    homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
   };
 }
diff --git a/pkgs/development/libraries/ortp/0.7.1.nix b/pkgs/development/libraries/ortp/0.7.1.nix
new file mode 100644
index 0000000000000..7bedf39f8be1d
--- /dev/null
+++ b/pkgs/development/libraries/ortp/0.7.1.nix
@@ -0,0 +1,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;
+  };
+}