ortp: fix meta.homepage

+ license is now GPL2+
This commit is contained in:
c0bw3b 2019-11-23 17:37:58 +01:00
parent b1a24b2118
commit fca07bfdb7

View File

@ -1,13 +1,12 @@
{ stdenv, cmake, fetchFromGitHub, bctoolbox }: { stdenv, cmake, fetchFromGitHub, bctoolbox }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
baseName = "ortp"; pname = "ortp";
version = "1.0.2"; version = "1.0.2";
name = "${baseName}-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "BelledonneCommunications"; owner = "BelledonneCommunications";
repo = baseName; repo = pname;
rev = version; rev = version;
sha256 = "12cwv593bsdnxs0zfcp07vwyk7ghlz2wv7vdbs1ksv293w3vj2rv"; sha256 = "12cwv593bsdnxs0zfcp07vwyk7ghlz2wv7vdbs1ksv293w3vj2rv";
}; };
@ -17,8 +16,8 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A Real-Time Transport Protocol (RFC3550) stack"; description = "A Real-Time Transport Protocol (RFC3550) stack";
homepage = http://www.linphone.org/index.php/eng/code_review/ortp; homepage = https://linphone.org/technical-corner/ortp;
license = licenses.lgpl21; license = licenses.gpl2Plus;
platforms = platforms.all; platforms = platforms.all;
}; };
} }