nixpkgs/pkgs/development/libraries/ortp/default.nix

24 lines
583 B
Nix
Raw Normal View History

{ stdenv, cmake, fetchFromGitHub, bctoolbox }:
stdenv.mkDerivation rec {
pname = "ortp";
2018-02-09 21:19:52 -08:00
version = "1.0.2";
2016-09-06 02:16:14 -07:00
src = fetchFromGitHub {
owner = "BelledonneCommunications";
repo = pname;
2019-09-08 16:38:31 -07:00
rev = version;
2018-02-09 21:19:52 -08:00
sha256 = "12cwv593bsdnxs0zfcp07vwyk7ghlz2wv7vdbs1ksv293w3vj2rv";
};
2016-09-06 02:16:14 -07:00
buildInputs = [ bctoolbox ];
nativeBuildInputs = [ cmake ];
2015-04-06 14:43:33 -07:00
meta = with stdenv.lib; {
description = "A Real-Time Transport Protocol (RFC3550) stack";
homepage = https://linphone.org/technical-corner/ortp;
license = licenses.gpl2Plus;
2015-04-06 14:43:33 -07:00
platforms = platforms.all;
};
}