summary refs log tree commit diff
path: root/pkgs/development/libraries/ortp
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-21 23:18:09 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-21 23:18:09 +0000
commit94d7d1fdbbb80718ff369389c1230ed77a4f7577 (patch)
treee6b513aa6e9bf61bcabcbfdfe7cd8f0dd052893f /pkgs/development/libraries/ortp
parent2a699fe5fb15cd68473f59d986059bdb92228b75 (diff)
downloadnixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.gz
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.bz2
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.lz
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.xz
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.zst
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.zip
* 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
Diffstat (limited to 'pkgs/development/libraries/ortp')
-rw-r--r--pkgs/development/libraries/ortp/0.7.1.nix16
-rw-r--r--pkgs/development/libraries/ortp/default.nix (renamed from pkgs/development/libraries/ortp/0.13.1.nix)9
2 files changed, 4 insertions, 21 deletions
diff --git a/pkgs/development/libraries/ortp/0.7.1.nix b/pkgs/development/libraries/ortp/0.7.1.nix
deleted file mode 100644
index 7bedf39f8be..00000000000
--- a/pkgs/development/libraries/ortp/0.7.1.nix
+++ /dev/null
@@ -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;
-  };
-}
diff --git a/pkgs/development/libraries/ortp/0.13.1.nix b/pkgs/development/libraries/ortp/default.nix
index ea1cd64b3d2..67d93152c2b 100644
--- a/pkgs/development/libraries/ortp/0.13.1.nix
+++ b/pkgs/development/libraries/ortp/default.nix
@@ -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;
   };
 }