about summary refs log tree commit diff
path: root/pkgs/development/libraries/ccrtp/default.nix
blob: 3e75cb45a733d5d5cc1437b19df0ef989d52b3ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, ucommon }:

stdenv.mkDerivation {
  name = "ccrtp-2.0.6";

  src = fetchurl {
    url = mirror://gnu/ccrtp/ccrtp-2.0.6.tar.gz;
    sha256 = "06rqwk2w5sikfb3l5bcpxszhq4g7ra840gqx1f011xrmhvclrzir";
  };

  buildInputs = [ openssl pkgconfig libgcrypt ];
  propagatedBuildInputs = [ ucommon ];

  doCheck = true;

  meta = {
    description = "An implementation of the IETF real-time transport protocol (RTP)";
    homepage = http://www.gnu.org/software/ccrtp/;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ marcweber ];
    platforms = stdenv.lib.platforms.linux;
  };
}