summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2019-11-23 17:37:58 +0100
committerc0bw3b <c0bw3b@users.noreply.github.com>2019-11-23 18:15:30 +0100
commitfca07bfdb7ace617db8dfca9c1c78b66beef2c9b (patch)
tree794676c57d5324ae62cfa1731180910527763ed3 /pkgs
parentb1a24b2118a123f9155dba01c5c1c45667d18cc3 (diff)
downloadnixpkgs-fca07bfdb7ace617db8dfca9c1c78b66beef2c9b.tar
nixpkgs-fca07bfdb7ace617db8dfca9c1c78b66beef2c9b.tar.gz
nixpkgs-fca07bfdb7ace617db8dfca9c1c78b66beef2c9b.tar.bz2
nixpkgs-fca07bfdb7ace617db8dfca9c1c78b66beef2c9b.tar.lz
nixpkgs-fca07bfdb7ace617db8dfca9c1c78b66beef2c9b.tar.xz
nixpkgs-fca07bfdb7ace617db8dfca9c1c78b66beef2c9b.tar.zst
nixpkgs-fca07bfdb7ace617db8dfca9c1c78b66beef2c9b.zip
ortp: fix meta.homepage
+ license is now GPL2+
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/ortp/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/libraries/ortp/default.nix b/pkgs/development/libraries/ortp/default.nix
index 58f355b27fe..7be0e4bb06a 100644
--- a/pkgs/development/libraries/ortp/default.nix
+++ b/pkgs/development/libraries/ortp/default.nix
@@ -1,13 +1,12 @@
 { stdenv, cmake, fetchFromGitHub, bctoolbox }:
 
 stdenv.mkDerivation rec {
-  baseName = "ortp";
+  pname = "ortp";
   version = "1.0.2";
-  name = "${baseName}-${version}";
 
   src = fetchFromGitHub {
     owner = "BelledonneCommunications";
-    repo = baseName;
+    repo = pname;
     rev = version;
     sha256 = "12cwv593bsdnxs0zfcp07vwyk7ghlz2wv7vdbs1ksv293w3vj2rv";
   };
@@ -17,8 +16,8 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A Real-Time Transport Protocol (RFC3550) stack";
-    homepage = http://www.linphone.org/index.php/eng/code_review/ortp;
-    license = licenses.lgpl21;
+    homepage = https://linphone.org/technical-corner/ortp;
+    license = licenses.gpl2Plus;
     platforms = platforms.all;
   };
 }