summary refs log tree commit diff
path: root/pkgs/development/libraries/ccrtp/default.nix
blob: 73ea5254182d59f4c8df117bec5409dda683b2b3 (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.3";

  src = fetchurl {
    url = mirror://gnu/ccrtp/ccrtp-2.0.3.tar.gz;
    sha256 = "1p4zzqn02zvnyjy84khiq8v65pl422fb6ni946h9sxh4yw2lgn01";
  };

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

  doCheck = true;

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