nixpkgs/pkgs/development/libraries/ortp/default.nix
c0bw3b fca07bfdb7 ortp: fix meta.homepage
+ license is now GPL2+
2019-11-23 18:15:30 +01:00

24 lines
583 B
Nix

{ stdenv, cmake, fetchFromGitHub, bctoolbox }:
stdenv.mkDerivation rec {
pname = "ortp";
version = "1.0.2";
src = fetchFromGitHub {
owner = "BelledonneCommunications";
repo = pname;
rev = version;
sha256 = "12cwv593bsdnxs0zfcp07vwyk7ghlz2wv7vdbs1ksv293w3vj2rv";
};
buildInputs = [ bctoolbox ];
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "A Real-Time Transport Protocol (RFC3550) stack";
homepage = https://linphone.org/technical-corner/ortp;
license = licenses.gpl2Plus;
platforms = platforms.all;
};
}